Index: src/ast.h |
=================================================================== |
--- src/ast.h (revision 3642) |
+++ src/ast.h (working copy) |
@@ -180,8 +180,6 @@ |
kTestValue |
}; |
- Expression() : context_(kUninitialized) {} |
- |
virtual Expression* AsExpression() { return this; } |
virtual bool IsValidJSON() { return false; } |
@@ -200,12 +198,8 @@ |
// Static type information for this expression. |
StaticType* type() { return &type_; } |
- Context context() { return context_; } |
- void set_context(Context context) { context_ = context; } |
- |
private: |
StaticType type_; |
- Context context_; |
}; |