| 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_incremental.fletch_reuser; | 5 library fletchc_incremental.fletch_reuser; |
| 6 | 6 |
| 7 import 'package:compiler/compiler_new.dart' show | 7 import 'package:compiler/compiler_new.dart' show |
| 8 CompilerDiagnostics, | 8 CompilerDiagnostics, |
| 9 Diagnostic; | 9 Diagnostic; |
| 10 | 10 |
| 11 import 'package:compiler/compiler.dart' as api; | 11 import 'package:compiler/compiler.dart' as api; |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 } | 372 } |
| 373 | 373 |
| 374 EnqueueTask get enqueuer => compiler.enqueuer; | 374 EnqueueTask get enqueuer => compiler.enqueuer; |
| 375 | 375 |
| 376 FletchContext get fletchContext => compiler.context; | 376 FletchContext get fletchContext => compiler.context; |
| 377 | 377 |
| 378 FletchFunctionBuilder lookupFletchFunctionBuilder(FunctionElement function) { | 378 FletchFunctionBuilder lookupFletchFunctionBuilder(FunctionElement function) { |
| 379 return backend.systemBuilder.lookupFunctionBuilderByElement(function); | 379 return backend.systemBuilder.lookupFunctionBuilderByElement(function); |
| 380 } | 380 } |
| 381 } | 381 } |
| OLD | NEW |