Added script to compile Meson itself.

pull/15/head
Jussi Pakkanen 12 years ago
parent a21737cdd7
commit d30c2eba03
  1. 13
      compile_meson.py
  2. 21
      mparser.py

@ -0,0 +1,13 @@
#!/usr/bin/python3 -tt
# This file generates all files needed to run
# Meson. It does the equivalent of "make" in
# standard build systems.
import os
import mparser
fullfile = os.path.abspath(__file__)
fulldir = os.path.dirname(fullfile)
mparser.generate_parser_files(fulldir)

@ -215,20 +215,17 @@ def test_lexer():
break
print(tok)
def test_parser():
code = """func_call('something', 'or else')
objectname.methodname(abc)
emptycall()"""
print(build_ast(code))
def generate_parser_files(outputdir):
code = """project('empty', 'c')
"""
build_ast(code, outputdir=outputdir)
def build_ast(code):
def build_ast(code, outputdir=None):
code = code.rstrip() + '\n'
lex.lex()
parser = yacc.yacc()
if outputdir:
parser = yacc.yacc(outputdir=outputdir)
else:
parser = yacc.yacc()
result = parser.parse(code)
return result
if __name__ == '__main__':
#test_lexer()
test_parser()

Loading…
Cancel
Save