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

Unified Diff: pkg/analyzer/test/generated/parser_fasta_test.dart

Issue 2694703002: Update parser_fasta_test in pkg/analyzer. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/parser_fasta_test.dart
diff --git a/pkg/analyzer/test/generated/parser_fasta_test.dart b/pkg/analyzer/test/generated/parser_fasta_test.dart
index 7931292acc66437306cf6b3e4c7961290f3cf9eb..9f2a03e0a1ed158de0aa8e26926108babafecd81 100644
--- a/pkg/analyzer/test/generated/parser_fasta_test.dart
+++ b/pkg/analyzer/test/generated/parser_fasta_test.dart
@@ -333,6 +333,9 @@ class KernelLibraryBuilderProxy implements KernelLibraryBuilder {
@override
final uri = Uri.parse('file:///test.dart');
+ @override
+ Uri get fileUri => uri;
+
noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
}
@@ -345,7 +348,8 @@ class KernelLibraryBuilderProxy implements KernelLibraryBuilder {
class ScopeProxy implements Scope {
final _locals = <String, Builder>{};
- Builder lookup(String name) =>
+ @override
+ Builder lookup(String name, int charOffset, Uri fileUri) =>
_locals.putIfAbsent(name, () => new BuilderProxy());
noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698