|
| Instruction[] | Instructions [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 33 of file InstructionList.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.InstructionList.Load |
( |
InstructionList | list, |
|
|
XElement | element ) |
|
static |
Loads the XML element into a InstructionList instance.
- Parameters
-
- Returns
Definition at line 53 of file InstructionList.cs.
54 {
55 Load((MapXmlElement)list, element);
56 list.Instructions = element.Elements().Select(
Instruction.Read).ToArray();
57 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static InstructionList IKVM.Tools.Importer.MapXml.InstructionList.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new InstructionList instance.
- Parameters
-
- Returns
Definition at line 41 of file InstructionList.cs.
42 {
43 var list = new InstructionList();
45 return list;
46 }
◆ Instructions
| Instruction [] IKVM.Tools.Importer.MapXml.InstructionList.Instructions |
|
getset |
The documentation for this class was generated from the following file: