Add return as a special form

This commit is contained in:
Kodi Arfer 2017-08-11 13:56:44 -07:00
parent cca8beea44
commit 21ea36f277
2 changed files with 70 additions and 0 deletions

View File

@ -2316,6 +2316,16 @@ class HyASTCompiler(object):
return ret
@builds("return")
@checkargs(max=1)
def compile_return(self, expr):
ret = Result()
if len(expr) > 1:
ret += self.compile(expr[1])
return ret + ast.Return(value=ret.force_expr,
lineno=expr.start_line,
col_offset=expr.start_column)
@builds("defclass")
@checkargs(min=1)
def compile_class_expression(self, expressions):

View File

@ -849,6 +849,66 @@
(assert (= mooey.__name__ "mooey")))
(defn test-return []
; `return` in main line
(defn f [x]
(return (+ x "a"))
(+ x "b"))
(assert (= (f "q") "qa"))
; Nullary `return`
(defn f [x]
(return)
5)
(assert (none? (f "q")))
; `return` in `when`
(defn f [x]
(when (< x 3)
(return [x 1]))
[x 2])
(assert (= (f 2) [2 1]))
(assert (= (f 4) [4 2]))
; `return` in a loop
(setv accum [])
(defn f [x]
(while True
(when (zero? x)
(return))
(.append accum x)
(-= x 1))
(.append accum "this should never be appended")
1)
(assert (none? (f 5)))
(assert (= accum [5 4 3 2 1]))
; `return` of a `do`
(setv accum [])
(defn f []
(return (do
(.append accum 1)
3))
4)
(assert (= (f) 3))
(assert (= accum [1]))
; `return` of an `if` that will need to be compiled to a statement
(setv accum [])
(defn f [x]
(return (if (= x 1)
(do
(.append accum 1)
"a")
(do
(.append accum 2)
"b")))
"c")
(assert (= (f 2) "b"))
(assert (= accum [2])))
(defn test-mangles []
"NATIVE: test mangles"
(assert (= 2 ((fn [] (+ 1 1))))))