view Jint.Runtime/VM/OpCodes/Codes.cs @ 4:1ae5b10f7a10

Code cleanup, minor refactoring
author cin
date Sun, 27 Oct 2013 21:20:59 +0400
parents aced2ae9957f
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
    }
}