summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/scl/WordsSCLToken.java
blob: 81453dc0436e6f19ec00f068730cff06a8f5f53e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package bjc.dicelang.scl;

import bjc.utils.funcdata.IList;

public class WordsSCLToken extends SCLToken {
	/* Used for WORDS & ARRAY */
	public IList<SCLToken> tokenVals;

	public WordsSCLToken(boolean isArray, IList<SCLToken> tokens) {
		if(isArray) {
			type = Type.ARRAY;
		} else {
			type = Type.WORDS;
		}
		
		tokenVals = tokens;
	}
}