2018-04-17 14:18:23 -07:00
|
|
|
-- This file contains the datastructures used to represent parsed Nomsu syntax trees,
|
|
|
|
-- as well as the logic for converting them to Lua code.
|
2018-06-12 15:12:27 -07:00
|
|
|
{:repr} = require 'utils'
|
2018-04-17 14:18:23 -07:00
|
|
|
{:insert, :remove, :concat} = table
|
2018-06-12 15:12:27 -07:00
|
|
|
{:Source} = require "code_obj"
|
2018-06-18 15:44:29 -07:00
|
|
|
unpack or= table.unpack
|
2018-04-17 14:18:23 -07:00
|
|
|
|
2018-06-12 15:12:27 -07:00
|
|
|
AST = {}
|
2018-06-18 18:10:59 -07:00
|
|
|
AST.is_syntax_tree = (n, t=nil)->
|
|
|
|
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
2018-04-17 14:18:23 -07:00
|
|
|
|
2018-06-13 13:23:24 -07:00
|
|
|
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
2018-07-15 19:41:22 -07:00
|
|
|
"IndexChain", "Action", "FileChunks"}
|
2018-06-13 13:23:24 -07:00
|
|
|
for name in *types
|
|
|
|
cls = {}
|
2018-06-12 15:12:27 -07:00
|
|
|
with cls
|
2018-06-12 18:04:18 -07:00
|
|
|
.__class = cls
|
2018-06-13 13:23:24 -07:00
|
|
|
.__index = cls
|
2018-06-12 18:04:18 -07:00
|
|
|
.__name = name
|
2018-06-13 13:23:24 -07:00
|
|
|
.type = name
|
2018-06-12 15:12:27 -07:00
|
|
|
.is_instance = (x)=> getmetatable(x) == @
|
2018-08-27 13:38:58 -07:00
|
|
|
.__tostring = =>
|
|
|
|
args = {tostring(@source), unpack(@)}
|
|
|
|
"#{@type}(#{concat([repr(v) for v in *args], ', ')})"
|
2018-06-12 15:12:27 -07:00
|
|
|
.map = (fn)=>
|
2018-07-15 19:41:22 -07:00
|
|
|
replacement = fn(@)
|
2018-07-17 14:12:11 -07:00
|
|
|
if replacement == false then return nil
|
|
|
|
if replacement
|
|
|
|
-- Clone the replacement, but give it a proper source
|
|
|
|
replacement = (replacement.__class)(@source, unpack(replacement))
|
|
|
|
else
|
|
|
|
replacements = {}
|
|
|
|
changes = false
|
|
|
|
for i,v in ipairs(@)
|
|
|
|
replacements[#replacements+1] = v
|
|
|
|
if AST.is_syntax_tree(v)
|
|
|
|
r = v\map(fn)
|
|
|
|
continue if r == v or r == nil
|
|
|
|
changes = true
|
|
|
|
replacements[#replacements] = r
|
|
|
|
return @ unless changes
|
|
|
|
replacement = (@__class)(@source, unpack(replacements))
|
|
|
|
replacement.comments = [c for c in *@comments] if @comments
|
|
|
|
return replacement
|
2018-07-22 13:44:00 -07:00
|
|
|
.__eq = (other)=>
|
|
|
|
return false if type(@) != type(other) or #@ != #other or getmetatable(@) != getmetatable(other)
|
|
|
|
for i=1,#@
|
|
|
|
return false if @[i] != other[i]
|
|
|
|
return true
|
2018-06-12 15:12:27 -07:00
|
|
|
|
|
|
|
AST[name] = setmetatable cls,
|
2018-08-27 13:38:58 -07:00
|
|
|
__tostring: => @__name
|
2018-06-12 15:12:27 -07:00
|
|
|
__call: (source, ...)=>
|
2018-05-26 15:58:32 -07:00
|
|
|
if type(source) == 'string'
|
|
|
|
source = Source\from_string(source)
|
2018-06-12 20:06:33 -07:00
|
|
|
for i=1,select('#', ...) do assert(select(i,...))
|
2018-06-12 15:12:27 -07:00
|
|
|
assert(Source\is_instance(source))
|
2018-06-12 18:04:18 -07:00
|
|
|
inst = {:source, ...}
|
2018-06-12 15:12:27 -07:00
|
|
|
setmetatable(inst, @)
|
|
|
|
if inst.__init then inst\__init!
|
|
|
|
return inst
|
2018-04-24 20:16:46 -07:00
|
|
|
|
2018-06-13 13:23:24 -07:00
|
|
|
AST.Action.__init = =>
|
|
|
|
stub_bits = [type(a) == 'string' and a or '%' for a in *@]
|
|
|
|
@stub = concat stub_bits, " "
|
2018-04-24 20:16:46 -07:00
|
|
|
|
2018-06-14 21:59:25 -07:00
|
|
|
AST.Action.get_args = =>
|
|
|
|
[tok for tok in *@ when type(tok) != 'string']
|
|
|
|
|
2018-06-12 15:12:27 -07:00
|
|
|
return AST
|