예제 #1
0
                public override int getInstruction(Instruction[] buffer, int startPos)
                {
                    Expression exp = new exp_not(_m, _line,
                                                 new exp_and(_m, _line, new exp_not(_m, _line, _left), new exp_not(_m, _line, _right))
                                                 );
                    int pos = exp.getInstruction(buffer, startPos);

                    SymbolSetCodeStartPos(startPos);
                    return(pos);
                }
예제 #2
0
                public int getInstruction(Instruction[] buffer, int startPos)
                {
                    Expression exp = new exp_not(_m, _line,
                                                 new exp_and(_m, _line, new exp_not(_m, _line, _left), new exp_not(_m, _line, _right))
                                                 );
                    int pos = exp.getInstruction(buffer, startPos);

                    _m.parser_setLineCode(_line, startPos);
                    return(pos);
                }