view Jint.Runtime/VM/OpCodes/Codes.cs @ 7:17543aa3aced

sync
author cin
date Tue, 29 Oct 2013 07:04:33 +0400
parents 1ae5b10f7a10
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Jint.Runtime.VM.OpCodes {
    enum Codes: int {
        Noop = 0,
        
        Add,
        Sub,
        Div,
        Mul,
        
        BAnd,
        BOr,
        BNot,
        
        LAnd,
        LOr,
        LNot,
        
        Cmp,
        Eq,

        MaxOp
    }
}