Merge branch 'master' of github.com:paultag/hy

This commit is contained in:
Paul Tagliamonte 2013-01-22 18:39:46 -05:00
commit c9fa3c165f
3 changed files with 5 additions and 1 deletions

4
REFACTOR Normal file
View 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

View File

@ -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__)

View File

@ -147,6 +147,7 @@ class AST27Converter(object):
self.native_cases = {
"defn": self._defn,
"fn": self._defn,
"def": self._def,
"import": _ast_import,