File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
2- DumbLuaParser
2+ Dumb Lua Parser
33
44v1.2.0 (2021-05-13)
55- Added parser.updateReferences().
Original file line number Diff line number Diff line change 11# Dumb Lua Parser
2+
23* Dumb Lua Parser* is a library for tokenizing Lua code or creating ASTs (Abstract Syntax Trees) and converting the data back to Lua.
34
45The library is a [ single Lua file] ( dumbParser.lua ) with no dependencies other than Lua itself.
56It works with Lua 5.1, 5.2 and 5.3.
67MIT license.
78
9+ Download the latest stable release [ here] ( https://github.com/ReFreezed/DumbLuaParser/releases/latest ) .
10+
11+
812## Basic usage
13+
914``` lua
1015local parser = require (" dumbParser" )
1116
@@ -18,5 +23,8 @@ local lua = parser.toLua(ast, true)
1823print (lua )
1924```
2025
26+
2127## Documentation
22- See the [ source file] ( dumbParser.lua ) for full documentation.
28+
29+ See the [ source file] ( dumbParser.lua ) for the full documentation.
30+
Original file line number Diff line number Diff line change 11--[[ ============================================================
22--=
3- --= Lua parsing library v1.2 (2021-05-13)
3+ --= Dumb Lua Parser - Lua parsing library
44--= by Marcus 'ReFreezed' Thunström
55--=
6+ --= v1.2 (2021-05-13)
7+ --=
68--= License: MIT (see the bottom of this file)
9+ --= Website: https://github.com/ReFreezed/DumbLuaParser
710--=
811--= Supported Lua versions: 5.1, 5.2, 5.3
912--=
You can’t perform that action at this time.
0 commit comments