489490491492493494495
public LValueBlock attribute(int line, Block lhs, Block property) { return new AttributeAccessBlock(loc(line),lhs,property); } public LValueBlock staticField(int line, Class type, String name) { return new StaticFieldBlock(loc(line),type,name); }
478479480481482483484
public LValueBlock property(int line, Block lhs, Block property) { return new PropertyAccessBlock(loc(line),lhs,property); } public LValueBlock staticField(int line, Class type, String name) { return new StaticFieldBlock(loc(line),type,name); }
438439440441442443444