Home | History | Annotate | Download | only in ast

Lines Matching refs:EmptyParentheses

92   V(EmptyParentheses)           \
2922 class EmptyParentheses final : public Expression {
2924 DECLARE_NODE_TYPE(EmptyParentheses)
2927 EmptyParentheses(Zone* zone, int pos) : Expression(zone, pos) {}
3510 EmptyParentheses* NewEmptyParentheses(int pos) {
3511 return new (local_zone_) EmptyParentheses(local_zone_, pos);