avm2: Implement TimerEvent.toString

This commit is contained in:
_Mads 2024-02-03 13:54:52 -08:00 committed by GitHub
parent 42719ee8e1
commit b5d0c965f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ package flash.events {
return new TimerEvent(this.type,this.bubbles,this.cancelable);
}
// Returns a string that contains all the properties of the TimerEvent object.
override public function toString():String {
return this.formatToString("TimerEvent","type","bubbles","cancelable", "eventPhase");
}
public native function updateAfterEvent():void;
}
}