diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-02 12:47:28 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-02 12:47:28 +0100 |
commit | e547de64c80b98d661999c0788c09210d9d4a37e (patch) | |
tree | 19b0f1b8dd67c3cff002ecad5d10de6c5e806801 /js/src/frontend/BytecodeCompiler.h | |
parent | 278eda6a09e9177678d57a2da2b6a8ddcb503b1c (diff) | |
download | uxp-e547de64c80b98d661999c0788c09210d9d4a37e.tar.gz |
Stage 1-1: Implement Function.prototype.toString revision proposal.
Tag #960
Diffstat (limited to 'js/src/frontend/BytecodeCompiler.h')
-rw-r--r-- | js/src/frontend/BytecodeCompiler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/frontend/BytecodeCompiler.h b/js/src/frontend/BytecodeCompiler.h index 72e9676395..0bc1ab2abf 100644 --- a/js/src/frontend/BytecodeCompiler.h +++ b/js/src/frontend/BytecodeCompiler.h @@ -109,6 +109,8 @@ IsIdentifier(JSLinearString* str); * As above, but taking chars + length. */ bool +IsIdentifier(const char* chars, size_t length); +bool IsIdentifier(const char16_t* chars, size_t length); /* True if str is a keyword. Defined in TokenStream.cpp. */ |