Package javassist.compiler.ast

Examples of javassist.compiler.ast.Pair


/*      */
/*  215 */     int var = getMaxLocals();
/*  216 */     incMaxLocals(1);
/*  217 */     while (catchList != null)
/*      */     {
/*  219 */       Pair p = (Pair)catchList.head();
/*  220 */       catchList = catchList.tail();
/*  221 */       Declarator decl = (Declarator)p.getLeft();
/*  222 */       Stmnt block = (Stmnt)p.getRight();
/*      */
/*  224 */       decl.setLocalVar(var);
/*      */
/*  226 */       CtClass type = this.resolver.lookupClassByJvmName(decl.getClassName());
/*  227 */       decl.setClassName(MemberResolver.javaToJvmName(type.getName()));
View Full Code Here


/*      */       }
/*  484 */       if (this.lex.get() != 41) {
/*  485 */         throw new SyntaxError(this.lex);
/*      */       }
/*  487 */       Stmnt b = parseBlock(tbl2);
/*  488 */       catchList = ASTList.append(catchList, new Pair(d, b));
/*      */     }
/*      */
/*  491 */     Stmnt finallyBlock = null;
/*  492 */     if (this.lex.lookAhead() == 316) {
/*  493 */       this.lex.get();
View Full Code Here

TOP

Related Classes of javassist.compiler.ast.Pair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.