Lines Matching refs:at

38  *  If you write code that depends on this, you do so at your own risk.
78 return M.at(t.pos).Annotation(annotationType, args);
85 return M.at(t.pos).Assert(cond, detail);
92 return M.at(t.pos).Assign(lhs, rhs);
99 return M.at(t.pos).Assignop(t.getTag(), lhs, rhs);
106 return M.at(t.pos).Binary(t.getTag(), lhs, rhs);
112 return M.at(t.pos).Block(t.flags, stats);
117 return M.at(t.pos).Break(t.label);
124 return M.at(t.pos).Case(pat, stats);
131 return M.at(t.pos).Catch(param, body);
141 return M.at(t.pos).ClassDef(mods, t.name, typarams, extending, implementing, defs);
149 return M.at(t.pos).Conditional(cond, truepart, falsepart);
154 return M.at(t.pos).Continue(t.label);
161 return M.at(t.pos).DoLoop(body, cond);
167 return M.at(t.pos).Erroneous(errs);
173 return M.at(t.pos).Exec(expr);
181 return M.at(t.pos).ForeachLoop(var, expr, body);
190 return M.at(t.pos).ForLoop(init, cond, step, body);
195 return M.at(t.pos).Ident(t.name);
203 return M.at(t.pos).If(cond, thenpart, elsepart);
209 return M.at(t.pos).Import(qualid, t.staticImport);
216 return M.at(t.pos).Indexed(indexed, index);
222 return M.at(t.pos).Labelled(t.label, t.body);
227 return M.at(t.pos).Literal(t.typetag, t.value);
239 return M.at(t.pos).MethodDef(mods, t.name, restype, typarams, params, thrown, body, defaultValue);
247 return M.at(t.pos).Apply(typeargs, meth, args);
253 return M.at(t.pos).Modifiers(t.flags, annotations);
261 return M.at(t.pos).NewArray(elemtype, dims, elems);
271 return M.at(t.pos).NewClass(encl, typeargs, clazz, args, def);
277 return M.at(t.pos).Parens(expr);
283 return M.at(t.pos).Return(expr);
289 return M.at(t.pos).Select(selected, t.name);
294 return M.at(t.pos).Skip();
301 return M.at(t.pos).Switch(selector, cases);
308 return M.at(t.pos).Synchronized(lock, body);
314 return M.at(t.pos).Throw(expr);
322 return M.at(t.pos).TopLevel(packageAnnotations, pid, defs);
331 return M.at(t.pos).Try(resources, body, catchers, finalizer);
338 return M.at(t.pos).TypeApply(clazz, arguments);
344 return M.at(t.pos).TypeUnion(components);
350 return M.at(t.pos).TypeArray(elemtype);
357 return M.at(t.pos).TypeCast(clazz, expr);
362 return M.at(t.pos).TypeIdent(t.typetag);
368 return M.at(t.pos).TypeParameter(t.name, bounds);
375 return M.at(t.pos).TypeTest(expr, clazz);
381 return M.at(t.pos).Unary(t.getTag(), arg);
389 return M.at(t.pos).VarDef(mods, t.name, vartype, init);
396 return M.at(t.pos).WhileLoop(cond, body);
401 TypeBoundKind kind = M.at(t.kind.pos).TypeBoundKind(t.kind.kind);
403 return M.at(t.pos).Wildcard(kind, inner);
413 return M.at(t.pos).LetExpr(defs, expr);