Handbook
Glossary
compile-ifTrue:ifFalse: ( 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-ifTrue:ifFalse:
( lexenv ast -- quot )
[
receiver>>
compile-ast
]
[
compile-arguments
]
2bi
[
if
]
3append
;