本文整理汇总了Java中polyglot.ast.Field.fieldInstance方法的典型用法代码示例。如果您正苦于以下问题:Java Field.fieldInstance方法的具体用法?Java Field.fieldInstance怎么用?Java Field.fieldInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类polyglot.ast.Field
的用法示例。
在下文中一共展示了Field.fieldInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: exprToAccessPath
import polyglot.ast.Field; //导入方法依赖的package包/类
public AccessPath exprToAccessPath(Expr e) {
if (e instanceof Local) {
Local l = (Local) e;
return exprToAccessPath(l);
}
else if (e instanceof Field) {
Field f = (Field) e;
CETypeSystem ts = (CETypeSystem) f.type().typeSystem();
FieldInstance fi = f.fieldInstance();
if (!fi.isCanonical()) {
Goal g = ts.extensionInfo().scheduler().currentGoal();
g.setUnreachableThisRun();
}
else if (!fi.type().equals(ts.Condition())) {
throw new InternalCompilerError("Not a condition! ");
}
return new AccessPathField(fi, e.toString(), f.position());
}
throw new InternalCompilerError("Expression " + e
+ " not suitable for an access path.", e.position());
}
示例2: loadField
import polyglot.ast.Field; //导入方法依赖的package包/类
@Override
protected SecurityPolicy loadField(VarContext<SecurityPolicy> dfIn, Field n) {
CEFieldInstance fi = (CEFieldInstance) n.fieldInstance();
return fieldInstancePolicy(fi);
}