Available Methods
- name ( )
- FUNCTION
- ASSIGN
- STRING
- GETPROP
- FOR
- CALL
- VAR
- OR
- BLOCK
- NUMBER
- DO
- OBJECTLIT
- BITAND
- MUL
- WHILE
- AND
- VOID
- ADD
- HOOK
- FALSE
- NOT
- BITOR
- EXPR_RESULT
- BITXOR
- NEG
- IF
- COMMA
- ARRAYLIT
- TRUE
- NULL
- URSH
- GT
- LSH
- SHEQ
- MOD
- TRY
- BITNOT
- SUB
- LE
- NE
- EQ
- ASSIGN_SUB
- GE
- NEW
- ASSIGN_RSH
- SCRIPT
- POS
- LT
- ASSIGN_MUL
- GETELEM
- DIV
- INSTANCEOF
- ASSIGN_BITAND
- ASSIGN_ADD
- RSH
- THIS
- ASSIGN_MOD
- SHNE
- INC
- ASSIGN_URSH
- IN
- LABEL
- ASSIGN_DIV
- EMPTY
- TYPEOF
- ASSIGN_BITXOR
- REGEXP
- CATCH
- ASSIGN_BITOR
- DEC
- SWITCH
- ASSIGN_LSH
- CASE
- WITH
- THROW
- DELPROP
- RETURN
- STRING_KEY
- GETTER_DEF
- SETTER_DEF
- LP
- DEFAULT_CASE
- PARAM_LIST
- SET
- CONTINUE
- GET
- BREAK
- DEFAULT
- GET_REF
- CAST
- LABEL_NAME
- DEBUGGER
- REF_SPECIAL
- COLON
- CONST
- ERROR
- IMPORT
- TARGET
- TYPEOFNAME
- ESCXMLATTR
- LC
- IFNE
- EQUALS
- RC
- FINALLY
- REF_MEMBER
- LB
- IFEQ
- REF_NAME
- SETELEM
- ELSE
- SETPROP_OP
- DEFAULTNAMESPACE
- SET_REF
- BINDNAME
- RETHROW
- UNDEFINED_TYPE
- DOT
- COLONCOLON
- DEL_REF
- STAR
- DOTQUERY
- GETVAR
- QMARK
- ENUM_NEXT
- SETPROP
- LEAVEWITH
- SETCONST
Related Classes
- java.util.Arrays
- java.util.Collections
- java.util.concurrent.Callable
- java.util.logging.Level
- com.google.common.collect.Lists
- com.google.common.collect.ImmutableList
- javax.annotation.Nullable
- com.google.common.collect.Maps
- com.google.common.collect.Sets
- com.google.common.base.Preconditions
- com.google.common.collect.ImmutableSet
- com.google.common.base.Joiner
- com.google.common.annotations.VisibleForTesting
- com.google.common.base.Predicate
- com.google.common.base.Predicates
- com.google.javascript.rhino.jstype.FunctionType
- com.google.javascript.rhino.jstype.ObjectType
- com.google.javascript.rhino.jstype.JSTypeRegistry
- com.google.javascript.rhino.jstype.JSType
- com.google.javascript.rhino.JSTypeExpression
- com.google.javascript.rhino.jstype.JSTypeNative
- com.google.javascript.jscomp.CompilerOptions.LanguageMode
- com.google.javascript.rhino.JSDocInfo.Visibility
- com.google.javascript.rhino.JSDocInfo
- com.google.javascript.rhino.Node
Java Code Examples for com.google.javascript.rhino.Token#QMARK
The following examples show how to use
com.google.javascript.rhino.Token#QMARK .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TypeConversionPass.java From clutz with MIT License | 5 votes |
private boolean containsObject(Node typedefNode) { Token typedefToken = typedefNode.getToken(); if (typedefToken == Token.LC) { return true; } if ((typedefToken == Token.QMARK || typedefToken == Token.BANG) && typedefNode.hasOneChild()) { // child Node is a simple type or a LC return containsObject(typedefNode.getFirstChild()); } return false; }
Example 2
Source File: JSTypeRegistryTest.java From astor with GNU General Public License v2.0 | 5 votes |
public void testTypeResolutionModes() { SimpleErrorReporter reporter = new SimpleErrorReporter(); JSTypeRegistry lazyExprRegistry = new JSTypeRegistry(reporter); lazyExprRegistry.setResolveMode(ResolveMode.LAZY_EXPRESSIONS); JSTypeRegistry lazyNameRegistry = new JSTypeRegistry(reporter); lazyNameRegistry.setResolveMode(ResolveMode.LAZY_NAMES); JSTypeRegistry immediateRegistry = new JSTypeRegistry(reporter); immediateRegistry.setResolveMode(ResolveMode.IMMEDIATE); Node expr = new Node(Token.QMARK, Node.newString("foo")); StaticScope<JSType> empty = MapBasedScope.emptyScope(); JSType type = lazyExprRegistry.createFromTypeNodes( expr, "source.js", empty); assertTrue(type instanceof UnresolvedTypeExpression); assertTrue(type.isUnknownType()); assertEquals("?", type.toString()); assertNull("Unexpected warnings: " + reporter.warnings(), reporter.warnings()); type = lazyNameRegistry.createFromTypeNodes( expr, "source.js", empty); assertTrue(type instanceof UnionType); assertTrue(type.isUnknownType()); assertEquals("(foo|null)", type.toString()); assertNull("Unexpected warnings: " + reporter.warnings(), reporter.warnings()); type = immediateRegistry.createFromTypeNodes( expr, "source.js", empty); assertTrue(type instanceof UnknownType); assertEquals("Expected warnings", 1, reporter.warnings().size()); }
Example 3
Source File: JSTypeRegistryTest.java From astor with GNU General Public License v2.0 | 5 votes |
public void testForceResolve() { SimpleErrorReporter reporter = new SimpleErrorReporter(); JSTypeRegistry lazyExprRegistry = new JSTypeRegistry(reporter); lazyExprRegistry.setResolveMode(ResolveMode.LAZY_EXPRESSIONS); Node expr = new Node(Token.QMARK, Node.newString("foo")); StaticScope<JSType> empty = MapBasedScope.emptyScope(); JSType type = lazyExprRegistry.createFromTypeNodes( expr, "source.js", empty); assertFalse(type.isResolved()); assertTrue(type.forceResolve(reporter, empty).isResolved()); assertEquals("Expected warnings", 1, reporter.warnings().size()); }
Example 4
Source File: TypeInspector.java From js-dossier with Apache License 2.0 | 5 votes |
private boolean isKnownType(JsDoc.TypedDescription description) { if (!description.getType().isPresent()) { return false; } JSTypeExpression expression = description.getType().get(); return expression.getRoot().getToken() != Token.QMARK || expression.getRoot().getFirstChild() != null; }