Home | History | Annotate | Download | only in tool

Lines Matching defs:mModel

44     private final ExprModel mModel;
48 mModel = model;
80 return mModel.symbol(javaString, String.class);
92 return mModel.group(ctx.children.get(1).accept(this));
103 return mModel.bindingExpr(ctx.expression().accept(this));
118 ModelClass modelClass = analyzer.findClass(ctx.getText(), mModel.getImports());
120 return mModel.field(ctx.expression().accept(this),
124 StaticIdentifierExpr expr = mModel.staticIdentifier(name);
138 return mModel.ternary(mModel.comparison("==", left, mModel.symbol("null", Object.class)),
175 return mModel.symbol(node.getText(), classType);
185 return mModel.comparison(ctx.op.getText(), ctx.left.accept(this), ctx.right.accept(this));
195 return mModel.identifier(ctx.getText());
205 return mModel.ternary(ctx.left.accept(this), ctx.iftrue.accept(this),
227 return mModel.methodCall(ctx.target.accept(this),
238 return mModel.math(ctx.left.accept(this), ctx.op.getText(), ctx.right.accept(this));
248 return mModel.logical(ctx.left.accept(this), ctx.op.getText(), ctx.right.accept(this));
258 return mModel.math(ctx.left.accept(this), ctx.op.getText(), ctx.right.accept(this));
268 return mModel.bitshift(ctx.left.accept(this), ctx.op.getText(), ctx.right.accept(this));
278 return mModel.instanceOfOp(ctx.expression().accept(this), ctx.type().getText());
288 return mModel.unary(ctx.op.getText(), ctx.expression().accept(this));
315 return mModel.resourceExpr(packageName, resourceType, resourceName, args);
325 return mModel.bracketExpr(visit(ctx.expression(0)), visit(ctx.expression(1)));
335 return mModel.castExpr(ctx.type().getText(), visit(ctx.expression()));