Merge branch 'master' of github.com:paultag/hy
This commit is contained in:
commit
c9fa3c165f
4
REFACTOR
Normal file
4
REFACTOR
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
overhaul state stuff, machine stuff, revise to be smart
|
||||
|
||||
generate ast in a better way; use "prims" & macros to compile hy
|
@ -1,7 +1,6 @@
|
||||
from hy.compiler.ast27 import forge_ast
|
||||
from hy.lex.tokenize import tokenize
|
||||
import codegen
|
||||
import sys
|
||||
|
||||
from flask import Flask, render_template, request
|
||||
app = Flask(__name__)
|
||||
|
@ -147,6 +147,7 @@ class AST27Converter(object):
|
||||
|
||||
self.native_cases = {
|
||||
"defn": self._defn,
|
||||
"fn": self._defn,
|
||||
"def": self._def,
|
||||
"import": _ast_import,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user