Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/neolithos/neolua.git
Browse files Browse the repository at this point in the history
  • Loading branch information
neolithos committed Dec 21, 2014
2 parents af58d08 + 92b0241 commit bcce048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/06_std.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This sections gives an overview of the implementation state of the lua system li

* ![Is compatible to the lua reference.][done] `assert` Calls `System.Diagnostics.Debug.Assert`.
* ![Not full compatible to the lua reference.][noco] `collectgarbage` Only the parameter "count" and "collect" are supported. "step" and "isrunning" return always "true". "setpause" returns "false".
"* ![Not full compatible to the lua reference.][noco] `dofile` Redirects to DoChunk to load and run a text file. Optional add parameters for the script.
* ![Not full compatible to the lua reference.][noco] `dofile` Redirects to DoChunk to load and run a text file. Optional add parameters for the script.
```Lua
dofile('test.lua', 'a', 1, 'b', 2);
```
Expand All @@ -29,7 +29,7 @@ stdin is not supported."
* ![Not full compatible to the lua reference.][noco] `setmetatable` No metatable for userdata, operators are used.
* ![Is compatible to the lua reference.][done] `tonumber`
* ![Is compatible to the lua reference.][done] `tostring`
* ![Is compatible to the lua reference.][done] `type` “type” is extended with a second boolean parameter, that replaces “userdata” with the clr-type-name: type(obj, true);
* ![Is compatible to the lua reference.][done] `type` “type” is extended with a second boolean parameter, that replaces “userdata” with the clr-type-name: type(obj, true);
* ![Is compatible to the lua reference.][done] `_VERSION`
* ![Is compatible to the lua reference.][done] `xpcall`

Expand Down

0 comments on commit bcce048

Please sign in to comment.