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

Side by Side Diff: pkg/dartino_compiler/lib/incremental/scope_information_visitor.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 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
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 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
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 }
OLDNEW
« no previous file with comments | « pkg/dartino_compiler/lib/incremental/reuser.dart ('k') | pkg/dartino_compiler/lib/incremental_backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698