⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 name.java

📁 本设计Tiger语言为源语言
💻 JAVA
字号:
package Types;public class NAME extends Type {   public Symbol.Symbol name;   private Type binding;   public NAME(Symbol.Symbol n) {name=n;}   public boolean isLoop() {      Type b = binding;       boolean any;      binding=null;      if (b==null) any=true;      else if (b instanceof NAME)            any=((NAME)b).isLoop();      else any=false;      binding=b;      return any;     }        public Type actual() {return binding.actual();}   public boolean coerceTo(Type t) {	return this.actual().coerceTo(t);   }   public void bind(Type t) {binding = t;}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -