Handbook
Glossary
ast-local-variables? ( object -- ? )
Vocabulary
smalltalk
.
ast
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
ast-local-variables
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
smalltalk.ast
:
ast-local-variables?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
ast-local-variables
eq?
]
[
drop
f
]
if
;