|
| static new StLoc | Read (XElement element) |
| | Reads the XML element into a new stloc instance.
|
| |
| static void | Load (StLoc inst, XElement element) |
| | Loads the XML element into the instruction.
|
| |
| static Instruction | Read (XElement element) |
| | Reads the XML element into a new InstructionList instance.
|
| |
|
| string | Name [get, set] |
| |
| string | Class [get, set] |
| |
| string | Type [get, set] |
| |
| int | LineNumber [get, set] |
| | Gets the line number in the source file where this element occurs.
|
| |
| int | LinePosition [get, set] |
| | Gets the line position in the source file where this element occurs.
|
| |
|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 37 of file StLoc.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.StLoc.Load |
( |
StLoc | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 57 of file StLoc.cs.
58 {
60 inst.Name = (string)element.Attribute("name");
61 inst.Class = (string)element.Attribute("class");
62 inst.Type = (string)element.Attribute("type");
63 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new StLoc IKVM.Tools.Importer.MapXml.StLoc.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new stloc instance.
- Parameters
-
- Returns
Definition at line 45 of file StLoc.cs.
46 {
47 var inst = new StLoc();
49 return inst;
50 }
◆ Class
| string IKVM.Tools.Importer.MapXml.StLoc.Class |
|
getset |
◆ Name
| string IKVM.Tools.Importer.MapXml.StLoc.Name |
|
getset |
◆ Type
| string IKVM.Tools.Importer.MapXml.StLoc.Type |
|
getset |
The documentation for this class was generated from the following file: