Home | History | Annotate | Download | only in ast

Lines Matching defs:ArrayLiteral

73   V(ArrayLiteral)
1283 friend class ArrayLiteral;
1545 class ArrayLiteral final : public MaterializedLiteral {
1560 // ArrayLiteral can vary, so num_ids() is not a static method.
1612 ArrayLiteral(ZoneList<Expression*>* values, int first_spread_index, int pos)
3365 ArrayLiteral* NewArrayLiteral(ZoneList<Expression*>* values,
3367 return new (zone_) ArrayLiteral(values, -1, pos);
3370 ArrayLiteral* NewArrayLiteral(ZoneList<Expression*>* values,
3372 return new (zone_) ArrayLiteral(values, first_spread_index, pos);