enterArray: function()

in src/main.ts [160:168]


		enterArray: function() {
			if (curKey === null) {
				return fail('missing <key>');
			}
			let newArr:any[] = [];
			cur[curKey] = newArr;
			curKey = null;
			pushState(State.ARR_STATE, newArr);
		}