C# Class SwfDotNet.IO.ByteCode.Actions.ActionDefineFunction2.VariableFlagSet

set of flags for automatically storing variables in registers
Show file Open project: bladecoding/SwfExport Class Usage Examples

Public Properties

Property Type Description
PreloadArguments bool
PreloadGlobal bool
PreloadParent bool
PreloadRoot bool
PreloadSuper bool
PreloadThis bool
SuppressArguments bool
SuppressSuper bool
SuppressThis bool

Private Properties

Property Type Description
CheckExclusion void

Public Methods

Method Description
ToString ( ) : string

ToString method, called by outer class´ ToString

VariableFlagSet ( bool loadParent, bool loadRoot, bool dontSuper, bool loadSuper, bool dontArgs, bool loadArgs, bool dontThis, bool loadThis, bool loadGlobal ) : System

constructor

Private Methods

Method Description
CheckExclusion ( ) : void

check wether flags exclude each other

Method Details

ToString() public method

ToString method, called by outer class´ ToString
public ToString ( ) : string
return string

VariableFlagSet() public method

constructor
public VariableFlagSet ( bool loadParent, bool loadRoot, bool dontSuper, bool loadSuper, bool dontArgs, bool loadArgs, bool dontThis, bool loadThis, bool loadGlobal ) : System
loadParent bool
loadRoot bool
dontSuper bool
loadSuper bool
dontArgs bool
loadArgs bool
dontThis bool
loadThis bool
loadGlobal bool
return System

Property Details

PreloadArguments public property

preload 'arguments' variable
public bool PreloadArguments
return bool

PreloadGlobal public property

preload '_global' variable
public bool PreloadGlobal
return bool

PreloadParent public property

preload '_parent' variable
public bool PreloadParent
return bool

PreloadRoot public property

preload '_root' variable
public bool PreloadRoot
return bool

PreloadSuper public property

preload 'super' variable
public bool PreloadSuper
return bool

PreloadThis public property

preload 'this' variable
public bool PreloadThis
return bool

SuppressArguments public property

suppress 'super' variable
public bool SuppressArguments
return bool

SuppressSuper public property

suppress '_root' variable
public bool SuppressSuper
return bool

SuppressThis public property

suppress 'arguments' variable
public bool SuppressThis
return bool