MCPcopy Create free account
hub / github.com/dynjs/dynjs / isReservedWord

Method isReservedWord

src/main/java/org/dynjs/parser/js/Parser.java:418–420  ·  view source on GitHub ↗
(Token token)

Source from the content-addressed store, hash-verified

416 }
417
418 protected boolean isReservedWord(Token token) {
419 return isKeyword(token.getType()) || isFutureReservedWord(token.getText());
420 }
421
422 protected boolean isKeyword(TokenType type) {
423 switch (type) {

Callers 2

isValidIdentifierMethod · 0.95
isPropertyNameMethod · 0.95

Calls 4

isKeywordMethod · 0.95
isFutureReservedWordMethod · 0.95
getTypeMethod · 0.45
getTextMethod · 0.45

Tested by

no test coverage detected