IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Tools.Importer.MapXml.InstructionList Class Reference
Inheritance diagram for IKVM.Tools.Importer.MapXml.InstructionList:
IKVM.Tools.Importer.MapXml.MapXmlElement IKVM.Tools.Importer.MapXml.CatchBlock

Static Public Member Functions

static InstructionList Read (XElement element)
 Reads the XML element into a new InstructionList instance.
 
static void Load (InstructionList list, XElement element)
 Loads the XML element into a InstructionList instance.
 

Properties

Instruction[] Instructions [get, set]
 
- Properties inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
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.
 

Additional Inherited Members

- Static Protected Member Functions inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
static void Load (MapXmlElement e, XElement element)
 Loads the XML element into the instance.
 

Detailed Description

Definition at line 33 of file InstructionList.cs.

Member Function Documentation

◆ Load()

static void IKVM.Tools.Importer.MapXml.InstructionList.Load ( InstructionList list,
XElement element )
static

Loads the XML element into a InstructionList instance.

Parameters
element
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
Definition compiler.cs:44

◆ Read()

static InstructionList IKVM.Tools.Importer.MapXml.InstructionList.Read ( XElement element)
static

Reads the XML element into a new InstructionList instance.

Parameters
element
Returns

Definition at line 41 of file InstructionList.cs.

42 {
43 var list = new InstructionList();
44 Load(list, element);
45 return list;
46 }

Property Documentation

◆ Instructions

Instruction [] IKVM.Tools.Importer.MapXml.InstructionList.Instructions
getset

Definition at line 59 of file InstructionList.cs.

59{ get; set; }

The documentation for this class was generated from the following file: