enterDict: function()

in src/main.ts [172:183]


		enterDict: function() {
			let newDict: Dict = {};
			if (locationKeyName !== null) {
				newDict[locationKeyName] = {
					filename: filename,
					line: line,
					char: char
				};
			}
			cur.push(newDict);
			pushState(State.DICT_STATE, newDict);
		},