FIXME triage and formatting cleanups
[org.ibex.js.git] / src / org / ibex / js / ByteCodes.java
index 4449d49..bb6ff25 100644 (file)
@@ -30,7 +30,6 @@ interface ByteCodes {
     //public static final byte DECLARE = -6;       
 
     /** push a reference to the current scope onto the stack */
-    // FIXME: Document this
     public static final byte GLOBALSCOPE = -7;
 
     /** if given a null literal pop two elements off the stack; push stack[-1].get(stack[top])
@@ -89,7 +88,7 @@ interface ByteCodes {
     /** finish a finally block and carry out whatever instruction initiated the finally block */
     public static final byte MAKE_GRAMMAR = -25;
     
-    // FIXME: Document these and NEWSCOPE/OLDSCOPE/TOPSCOPE changes
+    // FEATURE: Document these and NEWSCOPE/OLDSCOPE/TOPSCOPE changes
     public static final byte SCOPEGET = -26;
     public static final byte SCOPEPUT = -27;