Lines Matching full:export
29 "export { Bar } from './bar';",
30 "export { Foo } from './foo';",
35 assert_file_and_contents("foo.ts", "export class Foo {")
49 "export { Bar } from './bar';",
50 "export { Foo } from './foo';",
55 assert_file_and_contents("foo.ts", "export class Foo {")
58 assert_file_and_contents("bar.ts", "export class Bar {")
69 "export { Bar } from './bar/bar';",
70 "export { Foo } from './something/foo';",
74 # Foo should be placed in the namespaced directory. It should export
79 "export class Foo {",
95 "export { Bar } from './bar'",
96 "export { Baz } from './baz'",
97 "export { Foo } from './foo'",
101 # Foo should be generated with an import to Bar and an export of itself.
106 "export class Foo {",
110 # Bar should be generated with an import to Baz and an export of itself.
115 "export class Bar {",
119 # Baz should be generated with an export of itself.
123 "export enum Baz {",
138 "export class Foo {",
155 "export class Foo {",
172 "export class Foo {",
182 "export class Bar {",
197 # Should export each of the types within the single file
199 "export class Foo {",
200 "export class Bar {",
201 "export enum Baz {",
223 # Should export each of the types within the single file
225 "export class bar_Bar {",
226 "export class bar_Foo {",
227 "export enum Baz {",
228 "export enum baz_Baz {",
229 "export class something_Foo {"