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

Unified Diff: pkg/front_end/lib/src/fasta/parser/dart_vm_native.dart

Issue 2979463002: Revert "Tweak public APIs and use them in patch_sdk, dart2js, and kernel-service." (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/lib/src/fasta/loader.dart ('k') | pkg/front_end/lib/src/fasta/parser/listener.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/parser/dart_vm_native.dart
diff --git a/pkg/front_end/lib/src/fasta/parser/dart_vm_native.dart b/pkg/front_end/lib/src/fasta/parser/dart_vm_native.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ce766765e524b363d5718ab497ceb47a39a638fe
--- /dev/null
+++ b/pkg/front_end/lib/src/fasta/parser/dart_vm_native.dart
@@ -0,0 +1,56 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/// Implements support for Dart VM native method bodies of this form:
+///
+/// native STRING
+///
+/// This support is kept separate from parser.dart as this isn't specified in
+/// the Dart Language Specification, also we hope to remove this syntax long
+/// term and replace it with annotations as in `dart2js`.
+library fasta.parser.dart_vm_native;
+
+import '../../scanner/token.dart' show Token;
+
+import '../scanner/token_constants.dart' show STRING_TOKEN;
+
+import '../util/link.dart' show Link;
+
+import 'parser.dart' show optional;
+
+/// When parsing a Dart VM library file, we may encounter a native clause
+/// instead of a function body. This method skips such a clause.
+///
+/// This method is designed to be called when encountering
+/// [ErrorKind.ExpectedBlockToSkip] in [Listener.handleUnrecoverableError].
+Token skipNativeClause(Token token) {
+ if (!optional("native", token)) return null;
+ token = token.next;
+ if (token.kind != STRING_TOKEN) return null;
+ if (!optional(";", token.next)) return null;
+ return token;
+}
+
+/// When parsing a Dart VM library file, we may encounter native getters like
+///
+/// int get length native "List_getLength";
+///
+/// This will result in [identifiers] being
+///
+/// [";", '"List_getLength"', "native", "length", "get"]
+///
+/// We need to remove '"List_getLength"' and "native" from that list.
+///
+/// This method designed to be called from [Listener.handleMemberName].
+Link<Token> removeNativeClause(Link<Token> identifiers) {
+ Link<Token> result = identifiers.tail;
+ if (result.isEmpty) return identifiers;
+ if (result.head.kind != STRING_TOKEN) return identifiers;
+ result = result.tail;
+ if (result.isEmpty) return identifiers;
+ if (optional('native', result.head)) {
+ return result.tail.prepend(identifiers.head);
+ }
+ return identifiers;
+}
« no previous file with comments | « pkg/front_end/lib/src/fasta/loader.dart ('k') | pkg/front_end/lib/src/fasta/parser/listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698