| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index b259aace91f16999c855816517e56f68c8c5f363..a737823751f25cf33135ae511f1617417d9a618f 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2944,6 +2944,11 @@ class Field : public Object {
|
|
|
| void EvaluateInitializer() const;
|
|
|
| + // For static fields only. Constructs a closure that gets/sets the
|
| + // field value.
|
| + RawInstance* GetterClosure() const;
|
| + RawInstance* SetterClosure() const;
|
| +
|
| // Constructs getter and setter names for fields and vice versa.
|
| static RawString* GetterName(const String& field_name);
|
| static RawString* GetterSymbol(const String& field_name);
|
|
|