blob: 6520bf9088c97db3799c8a4c5396d371c759b1d6 (
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.funcdata.ListEx;
/**
* 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(ListEx<SCLToken> tokens) {
super(false, tokens);
}
@Override
public String toString() {
return "WordsSCLToken [tokenVals=" + tokenVals + "]";
}
}
|