Created
November 22, 2009 00:57
-
-
Save tschneidereit/240357 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package avmplus | |
{ | |
public class PublicDescribeType | |
{ | |
public static function describeTypeJSON(target : Object, flags : uint) : Object | |
{ | |
return DescribeType.describeTypeJSON(target, flags); | |
} | |
public function publicDescribeMetadata(xml : XML, metadata : Array) : void | |
{ | |
describeMetadata(xml, metadata); | |
} | |
public function publicDescribeParams(xml : XML, parameters : Object) : void | |
{ | |
describeParams(xml, parameters); | |
} | |
public function publicDescribeTraits(xml : XML, traits : Object) : void | |
{ | |
describeTraits(xml, traits); | |
} | |
public function publicFinish(xml : XML, e : XML, i : Object) : void | |
{ | |
finish(xml, e, i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment