Flash.ActionScript.Statement
static function Statement(formatString: string, params arguments: object[]): void;
Description

Emits a block of ActionScript code in the current method translating variable and field references to their ActionScript names.

	import UnityEngine.Flash;
	
	var v = 42;
	ActionScript.Statement("trace({0})", v);