Handbook
Glossary
compile-new ( lexenv ast -- quot )
Vocabulary
smalltalk
.
compiler
Inputs
lexenv
an
object
ast
an
object
Outputs
quot
an
object
Definition
USING:
accessors
kernel
sequences
;
IN:
smalltalk.compiler
:
compile-new
( lexenv ast -- quot )
[
receiver>>
compile-ast
]
[
compile-arguments
]
2bi
[
new
]
3append
;