Class SimpleSlot
- java.lang.Object
-
- com.google.javascript.rhino.jstype.SimpleSlot
-
- All Implemented Interfaces:
StaticSlot<JSType>
,java.io.Serializable
- Direct Known Subclasses:
SymbolTable.Symbol
public class SimpleSlot extends java.lang.Object implements StaticSlot<JSType>, java.io.Serializable
The minimum implementation of StaticSlot. - See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SimpleSlot(java.lang.String name, JSType type, boolean inferred)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StaticReference<JSType>
getDeclaration()
Gets the declaration of this symbol.JSDocInfo
getJSDocInfo()
Gets the JSDoc for this slot.java.lang.String
getName()
Gets the name of the slot.JSType
getType()
Returns the type information, if any, for this slot.boolean
isTypeInferred()
Returns whether the type has been inferred (as opposed to declared).
-
-
-
Constructor Detail
-
SimpleSlot
public SimpleSlot(java.lang.String name, JSType type, boolean inferred)
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:StaticSlot
Gets the name of the slot.- Specified by:
getName
in interfaceStaticSlot<JSType>
-
getType
public JSType getType()
Description copied from interface:StaticSlot
Returns the type information, if any, for this slot.- Specified by:
getType
in interfaceStaticSlot<JSType>
- Returns:
- The type or
null
if no type is declared for it.
-
isTypeInferred
public boolean isTypeInferred()
Description copied from interface:StaticSlot
Returns whether the type has been inferred (as opposed to declared).- Specified by:
isTypeInferred
in interfaceStaticSlot<JSType>
-
getDeclaration
public StaticReference<JSType> getDeclaration()
Description copied from interface:StaticSlot
Gets the declaration of this symbol. May not exist.- Specified by:
getDeclaration
in interfaceStaticSlot<JSType>
-
getJSDocInfo
public JSDocInfo getJSDocInfo()
Description copied from interface:StaticSlot
Gets the JSDoc for this slot.- Specified by:
getJSDocInfo
in interfaceStaticSlot<JSType>
-
-