示例#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.ReadVarInt64()));
 }