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 haxe...@googlegroups.com
I found there are many @:noCompletion in the source code, and the official description is @:noCompletion : does not list the field as part of compiler completion results (since 3.0).
What it means?
thanks.
Juraj Kirchheim
unread,
Nov 6, 2013, 4:00:44 AM11/6/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 haxe...@googlegroups.com
It means that the field will not show up during completion. There is
also @:noUsing, which makes a static field non-eligible for
`using`-extensions.
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 haxe...@googlegroups.com
If an editor is making use of Haxe completion, then when you type things like object. you will get a list of its fields and methods etc, @:noCompletion will hide that particular field/method from appearing in the list. It does not mean you cannot 'use' it, only that you will not be told of its existance by completion.
SunGang
unread,
Nov 8, 2013, 4:17:48 AM11/8/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
If an editor is making use of Haxe completion, then when you type things like object. you will get a list of its fields and methods etc, @:noCompletion will hide that particular field/method from appearing in the list. It does not mean you cannot 'use' it, only that you will not be told of its existance by completion.