示例#1
0
 /// <summary>
 /// Reads the immediates (not the opcode) of a WebAssembly instruction
 /// for this operator from the given reader and returns the result as an
 /// instruction.
 /// </summary>
 /// <param name="Reader">The WebAssembly file reader to read immediates from.</param>
 /// <returns>A WebAssembly instruction.</returns>
 public override Instruction ReadImmediates(BinaryWasmReader Reader)
 {
     return(Create(Reader.ReadFloat64()));
 }