Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: site/try/poi/scope_information_visitor.dart

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « site/try/poi/poi.dart ('k') | site/try/src/compiler_isolate.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 trydart.poi.scope_information_visitor; 5 library trydart.poi.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/modelx.dart' show 9 import 'package:compiler/src/elements/modelx.dart' show
10 CompilationUnitElementX, 10 CompilationUnitElementX,
11 FieldElementX; 11 FieldElementX;
12 12
13 import 'package:compiler/src/elements/visitor.dart' show 13 import 'package:compiler/src/elements/visitor.dart' show
14 BaseElementVisitor; 14 BaseElementVisitor;
15 15
16 import 'package:compiler/src/dart2jslib.dart' show 16 import 'package:compiler/src/compiler.dart' show
17 Compiler; 17 Compiler;
18 18
19 import 'package:compiler/src/elements/elements.dart' show 19 import 'package:compiler/src/elements/elements.dart' show
20 AbstractFieldElement, 20 AbstractFieldElement,
21 ClassElement, 21 ClassElement,
22 CompilationUnitElement, 22 CompilationUnitElement,
23 Element, 23 Element,
24 ElementCategory, 24 ElementCategory,
25 FunctionElement, 25 FunctionElement,
26 LibraryElement, 26 LibraryElement,
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 } 296 }
297 return result; 297 return result;
298 } 298 }
299 } 299 }
300 300
301 modelx.ScopeX localScope(modelx.LibraryElementX element) => element.localScope; 301 modelx.ScopeX localScope(modelx.LibraryElementX element) => element.localScope;
302 302
303 modelx.ImportScope importScope(modelx.LibraryElementX element) { 303 modelx.ImportScope importScope(modelx.LibraryElementX element) {
304 return element.importScope; 304 return element.importScope;
305 } 305 }
OLDNEW
« no previous file with comments | « site/try/poi/poi.dart ('k') | site/try/src/compiler_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698