Re: [F-Script-talk] Intercepting variable access
Brought to you by:
pmougin
From: Philippe M. <phi...@wa...> - 2006-06-20 09:27:12
|
The F-Script interpreter uses the method "valueForIndex:isDefined:" (implemented by the SymbolTable class) to do variable lookup. This is probably the method you are looking for. You'll also probably need to call the method "symbolForIndex:" as part of your own implementation of "valueForIndex:isDefined:" in order to get the name of the variable being looked-up. Note that these methods are not part of the public F-Script API and might change in future versions. Feel free to ask if you need additional information. Best, Philippe |