- Enclosing class:
Input
public static interface Input.Token
A
Token
is a language-level token.-
Method Summary
Modifier and TypeMethodDescriptiongetTok()
Get the token'sInput.Tok
.ImmutableList
<? extends Input.Tok> Get the laterInput.Tok
s assigned to thisToken
.ImmutableList
<? extends Input.Tok> Get the earlierInput.Tok
s assigned to thisToken
.
-
Method Details
-
getTok
Input.Tok getTok()Get the token'sInput.Tok
.- Returns:
- the token's
Input.Tok
-
getToksBefore
ImmutableList<? extends Input.Tok> getToksBefore()Get the earlierInput.Tok
s assigned to thisToken
.- Returns:
- the earlier
Input.Tok
s assigned to thisToken
-
getToksAfter
ImmutableList<? extends Input.Tok> getToksAfter()Get the laterInput.Tok
s assigned to thisToken
.- Returns:
- the later
Input.Tok
s assigned to thisToken
-