| 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.verbs.export_verb; | 5 library fletchc.verbs.export_verb; |
| 6 | 6 |
| 7 import 'infrastructure.dart'; | 7 import 'infrastructure.dart'; |
| 8 | 8 |
| 9 import 'documentation.dart' show | 9 import 'documentation.dart' show |
| 10 exportDocumentation; | 10 exportDocumentation; |
| 11 | 11 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 Uri base) async { | 54 Uri base) async { |
| 55 return compileAndAttachToVmThen( | 55 return compileAndAttachToVmThen( |
| 56 commandSender, | 56 commandSender, |
| 57 commandIterator, | 57 commandIterator, |
| 58 state, | 58 state, |
| 59 script, | 59 script, |
| 60 base, | 60 base, |
| 61 true, | 61 true, |
| 62 () => developer.export(state, snapshot)); | 62 () => developer.export(state, snapshot)); |
| 63 } | 63 } |
| OLD | NEW |