OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library fletchc.incremental.scope_information_visitor; | 5 library dartino_compiler.incremental.scope_information_visitor; |
6 | 6 |
7 import 'package:compiler/src/elements/modelx.dart' as modelx; | 7 import 'package:compiler/src/elements/modelx.dart' as modelx; |
8 | 8 |
9 import 'package:compiler/src/elements/visitor.dart' show | 9 import 'package:compiler/src/elements/visitor.dart' show |
10 ElementVisitor; | 10 ElementVisitor; |
11 | 11 |
12 import 'package:compiler/src/compiler.dart' show | 12 import 'package:compiler/src/compiler.dart' show |
13 Compiler; | 13 Compiler; |
14 | 14 |
15 import 'package:compiler/src/elements/elements.dart' show | 15 import 'package:compiler/src/elements/elements.dart' show |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 } | 293 } |
294 return result; | 294 return result; |
295 } | 295 } |
296 } | 296 } |
297 | 297 |
298 modelx.ScopeX localScope(modelx.LibraryElementX element) => element.localScope; | 298 modelx.ScopeX localScope(modelx.LibraryElementX element) => element.localScope; |
299 | 299 |
300 modelx.ImportScope importScope(modelx.LibraryElementX element) { | 300 modelx.ImportScope importScope(modelx.LibraryElementX element) { |
301 return element.importScope; | 301 return element.importScope; |
302 } | 302 } |
OLD | NEW |