Lucas Terra

Results 6 issues of Lucas Terra

** This is a breaking change, it changes the format of the AST ** Closes #65

This is not exactly in the spec, but most Thrift parsers allow trailing semi-colon after typedef.

If you have this IDL: ```thrift /* */ const string asdf = 'sdf' ``` The AST will return an empty document: ```json { "type": "ThriftDocument", "body": [] } ``` -----...

The Thrift spec allows you to use `namespace *`, which means that the IDL applies to all target languages: https://thrift.apache.org/docs/idl#namespace The parser doesn't currently allow for that, because it treats...

Drawing groundlayer is disabled by default. You can enable it by either setting `TibiaMap.drawGroundLayer` to true ```js this.drawGroundLayer = true; ``` Or by calling `TibiaMap.setDrawGroundLayer` at runtime. This allows you...