Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

key

description

type

caller.type

Type in which the calling method was located

Type

caller.args

The arguments that have been passed to the caller

Array

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="4e1a3be4b4726ae9-23b80c22-4a6c4cce-9683a01b-a989bbbf7b8cf88a748cf5fd"><ac:plain-text-body><![CDATA[

call.clean

Called clean like foo.bar() or not (like foo["bar"]() or foo.bar.call(null))

Boolean

]]></ac:plain-text-body></ac:structured-macro>

call.lineNo

The line number of the file of the type where the method has been called

int

call.preferedReturnType

Type that the code wants to work with afterwards

Type

call.arguments

Types passed in for all arguments

Array

call.argument.<argument>

Type for a particular argument

Type

...

Code Block
langactionscript
[Fill(data="type")]
const type: XML; // Type as in describe-type

[Fill(data="type")]
const type: Object; // describe-type xml in a object tree

[FileFill(data="compile.time")]
const time: int; // Time as Integer;

[FileFill(data="compile.time")]
const time: String; // Time as String;

[FileFill(data="compile.time")]
const time: Date; // Time as Date;

[FileFill(bar="caller.argument.content")]
function foo(content:*, bar:Class=null); // Content type as class

[FileFill(bar="caller.argument.content")]
function foo(content:*, bar:String=null); // Content type as String

[FileFill(bar="caller.argument.content")]
function foo(content:*, bar:XML=null); // Content type as XML

...