blob: 40c4cd4c50b497f2bb33e8adcf18d47ebde7668b (
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;
/**
* A token representing an executable bunch of words.
*
* @author student
*
*/
public class WordsSCLToken extends WordListSCLToken {
/**
* Create a new executable words token.
*
* @param tokens
* The tokens to use.
*/
public WordsSCLToken(IList<SCLToken> tokens) {
super(false, tokens);
}
@Override
public String toString() {
return "WordsSCLToken [tokenVals=" + tokenVals + "]";
}
}
|