You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package {
import flash.display.Sprite;
public class Main extends Sprite {
public function Main() {
once();
once();
}
public function once():void {
if (!deprecationNotified) {
deprecationNotified = true;
trace("The method 'XXX' is deprecated");
}
}
}
}
var deprecationNotified:Boolean = false;
Output: (only one trace message)
[trace] The method 'XXX' is deprecated
Found: Starling transformCoords.as
The text was updated successfully, but these errors were encountered:
Valid ActionScript:
Output: (only one trace message)
Found: Starling
transformCoords.as
The text was updated successfully, but these errors were encountered: