| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index eeb2a41ad520301d79b2635c4b11b7147c51607e..7d9f4633a3a3ec3cba4f9d11ae007d9b620eec92 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2169,6 +2169,10 @@ class Function : public Object {
|
|
|
| void set_modifier(RawFunction::AsyncModifier value) const;
|
|
|
| + // An invisible function is hidden from stack traces, will not be enumerated
|
| + // by mirrors, and cannot be directly invoked by mirrors. All private
|
| + // functions in dart:* libraries are marked invisible by the parser.
|
| +
|
| #define FOR_EACH_FUNCTION_KIND_BIT(V) \
|
| V(Static, is_static) \
|
| V(Const, is_const) \
|
|
|