GithubHelp home page GithubHelp logo

jingxuouyang / lua2js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from basicer/lua2js

0.0 0.0 0.0 254 KB

Lua to JavaScript Transpiler -- Mirror of https://bitbucket.org/basicer/lua2js

License: MIT License

JavaScript 45.46% Lua 37.51% Perl 9.03% Makefile 0.55% HTML 7.45%

lua2js's Introduction

Lua2JS

A Lua parser and standard library targeting the Mozilla Parser API AST.

Installing

Generated and minified sources are available on NPM

npm install lua2js

Dependencies

  • Development: peg.js
  • Runtime: None =)

Compatibility

Many lua programs run unmodified on lua2js. See the lua-tests folder for some examples.

JavaScript <-> Lua

When the luaCalls option is on, the arguments to javascript functions will be adjusted in the following ways:

  • If the function was being called with : syntax, the variable that would be passed as self is used as this
  • If a LuaTable is passed as an argument if the table only has numeric entries, an array will be passed. If there are no numeric entire, a javascript object will be passed. If both are present, the LuaTable object will be passed.
  • If the last argument is a function that returned multiple values, they will be unpacked as normal.

Lua Syntax Not Supported (Yet)

  • Long form strings and comments will choke on internal ]]'s even when using the [==[ syntax.
  • The goto statement and labels from lua 5.2 are unimplemented.
  • The global environment doesn't exist in _ENV or _G.

Lua Runtime Standard Library

  • pairs ipairs next all work on both lua tables and javascript objects/arrays
  • MetaTable and operator overloading work on LuaTables

Lua Standard Library Holes

  • getmetatable and setmetatable only work on LuaTable's
  • requires and package interface tables are missing.
  • The debug library is missing.
  • The coroutine library is missing (and no runtime support for coroutines exists)`
  • The bit32 library from lua 5.2 is incomplete.
  • string.format is less powerful then the lua version.
  • Pattern matching (string.find, string.match, string.gsub) is unimplemented.
  • Code loading (load, dostring, dofile, etc...) is unimplemented.

Parser Options

Boolean Options

  • decorateLuaObjects: Mark lua functions so __lua.call can call them differently. Also the {} syntax will create a LuaTable object instead of a normal javascript object.
  • encloseWithFunctions: Protect variable scoping by creating functions and calling them.
  • forceVar: Forbid generation of let statements to maintain ES5 compatibility.
  • loose: Try not to throw parse errors, and collect them in ast.errors instead.
  • luaCalls: Rewrite function calls to use __lua.call to fix-up various lua<->javascript calling convention differences.
  • luaOperators: Use functions in the standard library instead of conventional operators to improve Lua compatibility. (e.g. a+b becomes __lua.add(a,b))
  • noSharedObjects: Make sure all AST nodes are unique objects. Can prevent bugs when performing transformations on the returned AST.
  • allowRegularFunctions: Normally all functions are emitted in something = function() { ... } format. Enable this to emit the more normal (but sometimes less compatible) function something() { ... }.

Testing

You can run a suite of tests using the npm test command. The tests require having nodeunit installed globally and a working Lua interpreter on your path. The tests fall into three categories.

  • Simple Tests: These are contained in an array toward the top of test.js and test simple lua programs without the Lua interpreter.
  • ./lua-tests/: A collection of various lua programs from around the internet. These are interpreted in node and their output compared against the systems lua interpreter.
  • ./lua-testmore/: Selected tests from the lua-TestMore project. Similar to the above.

License

Code and documentation copyright 2014 Rob Blanckaert. Code released under the MIT license.

lua2js's People

Contributors

basicer avatar nikai3d avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.