Here you can find the source of getSecondRulePart()
public static String getSecondRulePart()
//package com.java2s; //License from project: Academic Free License public class Main { /**/* w w w . j ava2 s . com*/ * Returns the second part of the rule class code * @return The second part of the rule class code */ public static String getSecondRulePart() { return "\t\t\n" + "\t\tlocalStack.popLayer(); \n" + "\t\treturn (CompilerRuntime.UpdateList) evalStack.pop();\n" + "\t}\n"; } }