Chromium Code Reviews| Index: runtime/vm/ast.h |
| diff --git a/runtime/vm/ast.h b/runtime/vm/ast.h |
| index 32fd18db8736962f4debcec2b076c5b520b75be4..659b66547edaa3446cd5bb606c38dea7f6a9557f 100644 |
| --- a/runtime/vm/ast.h |
| +++ b/runtime/vm/ast.h |
| @@ -1299,7 +1299,7 @@ class LoadStaticFieldNode : public AstNode { |
| virtual const Instance* EvalConstExpr() const { |
| ASSERT(field_.is_static()); |
| return !is_deferred_reference_ && field_.is_const() |
| - ? &Instance::ZoneHandle(field_.value()) |
| + ? &Instance::ZoneHandle(field_.StaticFieldValue()) |
| : NULL; |
| } |