|
| static new LdLoc | Read (XElement element) |
| | Reads the XML element into a new LdLoc instance.
|
| |
| static void | Load (LdLoc 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] |
| |
| 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 34 of file LdLoc.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.LdLoc.Load |
( |
LdLoc | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 54 of file LdLoc.cs.
55 {
57 inst.Name = (string)element.Attribute("name");
58 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new LdLoc IKVM.Tools.Importer.MapXml.LdLoc.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new LdLoc instance.
- Parameters
-
- Returns
Definition at line 42 of file LdLoc.cs.
43 {
44 var inst = new LdLoc();
46 return inst;
47 }
◆ Name
| string IKVM.Tools.Importer.MapXml.LdLoc.Name |
|
getset |
The documentation for this class was generated from the following file: