You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to roy...@googlegroups.com
Hi everyone,
is it possible to lookup a function node in the current scope of the AST in compile.js?
// Call to JavaScript call. visitCall: function() {
var func = n.func.value ? getFunctionNode(n.func.value) // <- ??? : undefined; if (func && func.types.length - 1 > args.length) …
Thanks in advance for any advice!
-- Andreas
Andreas Hartmann
unread,
Oct 21, 2013, 4:46:03 PM10/21/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to roy...@googlegroups.com
For the moment I have added the information on the deferred types to the AST node during type inference. Probably not the cleanest way, but it works until I find a better solution.