Changeset 34372 in webkit for trunk/JavaScriptCore/VM/Instruction.h
- Timestamp:
- Jun 4, 2008, 10:36:55 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Instruction.h
r33979 r34372 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 28 29 29 #ifndef Instruction_h 30 30 #define Instruction_h … … 37 37 Instruction(Opcode opcode) { u.opcode = opcode; } 38 38 Instruction(int operand) { u.operand = operand; } 39 39 40 40 union { 41 41 Opcode opcode; … … 43 43 } u; 44 44 }; 45 45 46 46 } // namespace KJS 47 47
Note:
See TracChangeset
for help on using the changeset viewer.