| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index 1c1b95b8a582a0552c15985042b18b35051c6ad9..6b11d79213a09064e47e98736d3d74f78b603c58 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -3415,13 +3415,6 @@ class AstNodeFactory FINAL BASE_EMBEDDED {
|
| VISIT_AND_RETURN(Literal, lit)
|
| }
|
|
|
| - Literal* NewStringListLiteral(ZoneList<const AstRawString*>* strings,
|
| - int pos) {
|
| - Literal* lit = new (zone_)
|
| - Literal(zone_, ast_value_factory_->NewStringList(strings), pos);
|
| - VISIT_AND_RETURN(Literal, lit)
|
| - }
|
| -
|
| Literal* NewNullLiteral(int pos) {
|
| Literal* lit =
|
| new (zone_) Literal(zone_, ast_value_factory_->NewNull(), pos);
|
|
|