Files
DefinitelyTyped/luaparse/luaparse-tests.ts
2015-07-14 20:17:45 +01:00

11 lines
322 B
TypeScript

/// <reference path="luaparse.d.ts" />
import luaparse = require('luaparse');
var luacode: string = '-- this is hello world in lua.\nprint(\'hello world\')';
var ast: Object = luaparse.parse(luacode);
console.log(JSON.stringify(ast));
ast = luaparse.parse(luacode, {comments: false});
console.log(JSON.stringify(ast));