blob: a06a0fd992de07124d7728e3e0cbfc8d21717316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package bjc.dicelang.scl.tokens;
import bjc.utils.funcdata.IList;
/**
* Represents an array token.
*
* @author student
*
*/
public class ArraySCLToken extends WordListSCLToken {
/**
* Create a new array token.
*
* @param tokens
* The tokens in the array.
*/
public ArraySCLToken(IList<SCLToken> tokens) {
super(true, tokens);
}
@Override
public String toString() {
return "ArraySCLToken [tokenVals=" + tokenVals + "]";
}
}
|