Home | History | Annotate | Download | only in ast

Lines Matching refs:Zone

11 #include "src/zone.h"
21 explicit VariableMap(Zone* zone);
32 Zone* zone() const { return zone_; }
35 Zone* zone_;
45 explicit DynamicScopePart(Zone* zone) {
47 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
64 explicit SloppyBlockFunctionMap(Zone* zone);
74 Zone* zone_;
92 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
101 static Scope* DeserializeScopeChain(Isolate* isolate, Zone* zone,
125 Zone* zone() const { return zone_; }
151 decls_.InsertAt(0, declaration, zone());
219 void AddTemporary(Variable* var) { temps_.Add(var, zone()); }
808 Scope(Zone* zone, Scope* inner_scope, ScopeType type,
812 Scope(Zone* zone, Scope* inner_scope, const AstRawString* catch_variable_name,
837 Zone* zone_;