| 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,
|
|
|