Advertisement
Guest User

Untitled

a guest
May 26th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. @:dox(group="Some group")
  2. @bindable @clonable public var someVar:Int;
  3. @:dox(group="Some group")
  4. public function someFunc():Int {
  5. return 111;
  6. }
  7. @:dox(group="Some group")
  8. public static var testVar:Bool;
  9. @:dox(group="Some group")
  10. public static function testFunc():Int {
  11. return 0;
  12. }
  13.  
  14. @:dox(group="Some other group")
  15. @bindable @clonable public var someVar1:Int;
  16. @:dox(group="Some other group")
  17. public function someFunc1():Int {
  18. return 111;
  19. }
  20. @:dox(group="Some other group")
  21. public static var testVar1:Bool;
  22. @:dox(group="Some other group")
  23. public static function testFunc1():Int {
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement