Skip to content

Instantly share code, notes, and snippets.

@tschneidereit
Created November 22, 2009 00:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tschneidereit/240357 to your computer and use it in GitHub Desktop.
Save tschneidereit/240357 to your computer and use it in GitHub Desktop.
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