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

Unified Diff: runtime/vm/parser.h

Issue 3001103002: Do not qualify with dart:: except where necessary (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.h
diff --git a/runtime/vm/parser.h b/runtime/vm/parser.h
index 4ec8fba813fba4b99a09cf94163f1b9eee518d85..436412dbcdb87560882f8552ac001b962acf4735 100644
--- a/runtime/vm/parser.h
+++ b/runtime/vm/parser.h
@@ -293,12 +293,11 @@ class Parser : public ValueObject {
const Instance& value);
// Parse a function to retrieve parameter information that is not retained in
- // the dart::Function object. Returns either an error if the parse fails
- // (which could be the case for local functions), or a flat array of entries
- // for each parameter. Each parameter entry contains:
- // * a Dart bool indicating whether the parameter was declared final
- // * its default value (or null if none was declared)
- // * an array of metadata (or null if no metadata was declared).
+ // the Function object. Returns either an error if the parse fails (which
+ // could be the case for local functions), or a flat array of entries for each
+ // parameter. Each parameter entry contains: * a Dart bool indicating whether
+ // the parameter was declared final * its default value (or null if none was
+ // declared) * an array of metadata (or null if no metadata was declared).
enum {
kParameterIsFinalOffset,
kParameterDefaultValueOffset,
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698