You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2019/02/02 09:55:57 UTC

[GitHub] carlosrovira opened a new issue #390: private var with [Bindable]

carlosrovira opened a new issue #390: private var with [Bindable]
URL: https://github.com/apache/royale-asjs/issues/390
 
 
   This declaration:
   
   ```
   [Bindable]
   private var someVar: String;
   ```
   
   js output is:
   
   /** @export
     * @private
     * @type {string} */
   com_something_SomeClass_somevar: {
   /** @this {com.something.SomeClass} */
     get: function() {
     return this.com_SomeClass_somevar_;
     },
   
   makes compiler output this warning:
   
   feb 02, 2019 10:49:20 AM com.google.javascript.jscomp.LoggerErrorManager println
   ADVERTENCIA: /Users/carlosrovira/webapp/javascript/bin/js-debug/com/something/SomeClass.js:437: WARNING - Parse error. extra visibility tag
     * @private
       ^
   
   why is compiler warning about it? the output seems right to me
   
   Thanks

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services