PageRenderTime 166ms CodeModel.GetById 4ms RepoModel.GetById 1ms app.codeStats 0ms

/Test/flex_override.mxml

http://github.com/fishman/ctags
Macromedia eXtensible Markup Language | 20 lines | 17 code | 3 blank | 0 comment | 0 complexity | 839ab230dc2c26775c22736e423051f3 MD5 | raw file
Possible License(s): GPL-2.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ATag xmlns="http://www.adobe.com/2006/mxml">
  3. <mx:Script>
  4. <![CDATA[
  5. public override function get myGet():MyClass
  6. {
  7. }
  8. private function save():void
  9. {
  10. }
  11. public override function myOverride():void
  12. {
  13. super.myOverride();
  14. }
  15. ]]>
  16. </mx:Script>
  17. </ATag>