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

Side by Side Diff: lib/kernel_visitor.dart

Issue 2117513002: More extensive error handling for 'unresolved' cases. (Closed) Base URL: git@github.com:dart-lang/rasta.git@master
Patch Set: Merge and update test expectations Created 4 years, 5 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 | « lib/kernel.dart ('k') | lib/unresolved.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 library rasta.kernel_visitor; 5 library rasta.kernel_visitor;
6 6
7 import 'package:kernel/ast.dart' as ir; 7 import 'package:kernel/ast.dart' as ir;
8 8
9 import 'package:kernel/accessors.dart' show 9 import 'package:kernel/frontend/accessors.dart' show
10 Accessor, 10 Accessor,
11 IndexAccessor, 11 IndexAccessor,
12 NullAwarePropertyAccessor, 12 NullAwarePropertyAccessor,
13 PropertyAccessor, 13 PropertyAccessor,
14 ReadOnlyAccessor, 14 ReadOnlyAccessor,
15 StaticAccessor, 15 StaticAccessor,
16 SuperIndexAccessor, 16 SuperIndexAccessor,
17 SuperPropertyAccessor, 17 SuperPropertyAccessor,
18 ThisPropertyAccessor, 18 ThisPropertyAccessor,
19 VariableAccessor, 19 VariableAccessor,
(...skipping 3010 matching lines...) Expand 10 before | Expand all | Expand 10 after
3030 : this(null, true, node, initializers); 3030 : this(null, true, node, initializers);
3031 3031
3032 accept(ir.Visitor v) => throw "unsupported"; 3032 accept(ir.Visitor v) => throw "unsupported";
3033 3033
3034 visitChildren(ir.Visitor v) => throw "unsupported"; 3034 visitChildren(ir.Visitor v) => throw "unsupported";
3035 3035
3036 String toString() { 3036 String toString() {
3037 return "IrFunction($kind, $isConstructor, $node, $initializers)"; 3037 return "IrFunction($kind, $isConstructor, $node, $initializers)";
3038 } 3038 }
3039 } 3039 }
OLDNEW
« no previous file with comments | « lib/kernel.dart ('k') | lib/unresolved.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698