Returns whether this computed object is a variable reference.
(self)
| 188 | return f'ee.{self.name()}({serializer.toReadableJSON(self)})' |
| 189 | |
| 190 | def isVariable(self) -> bool: |
| 191 | """Returns whether this computed object is a variable reference.""" |
| 192 | # We can't just check for varName != null, since we allow that |
| 193 | # to remain null until for CustomFunction.resolveNamelessArgs_(). |
| 194 | return self.func is None and self.args is None |
| 195 | |
| 196 | def aside(self, func: Any, *var_args) -> ComputedObject: |
| 197 | """Calls a function passing this object as the first argument. |
no outgoing calls