| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index b812c98e63af95ae084aeb22ce43d3baf23269d1..02dfe15f8ef31bdc76b978277433c62951c5d921 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -632,6 +632,9 @@ class ParserTraits {
|
| V8_INLINE Expression* CloseTemplateLiteral(TemplateLiteralState* state,
|
| int start, Expression* tag);
|
| V8_INLINE Expression* NoTemplateTag() { return NULL; }
|
| + V8_INLINE static bool IsTaggedTemplate(const Expression* tag) {
|
| + return tag != NULL;
|
| + }
|
|
|
| private:
|
| Parser* parser_;
|
|
|