OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 library fletchc.compiler_api_test; | 5 library fletchc.compiler_api_test; |
6 | 6 |
7 import 'package:fletchc/compiler.dart' show | 7 import 'package:fletchc/compiler.dart' show |
8 FletchCompiler; | 8 FletchCompiler; |
9 | 9 |
10 import 'package:expect/expect.dart' show | 10 import 'package:expect/expect.dart' show |
11 Expect; | 11 Expect; |
(...skipping 24 matching lines...) Expand all Loading... |
36 | 36 |
37 new FletchCompiler( | 37 new FletchCompiler( |
38 script: Uri.base.resolve("lib/system/system.dart")).run(); | 38 script: Uri.base.resolve("lib/system/system.dart")).run(); |
39 | 39 |
40 new FletchCompiler().run("lib/system/system.dart"); | 40 new FletchCompiler().run("lib/system/system.dart"); |
41 | 41 |
42 new FletchCompiler().run(Uri.parse("lib/system/system.dart")); | 42 new FletchCompiler().run(Uri.parse("lib/system/system.dart")); |
43 | 43 |
44 new FletchCompiler().run(Uri.base.resolve("lib/system/system.dart")); | 44 new FletchCompiler().run(Uri.base.resolve("lib/system/system.dart")); |
45 } | 45 } |
OLD | NEW |