📄 dlocal.java
字号:
// $Id: dGlobl.java,v 1.3 2000/10/21 23:18:11 mdeeds Exp $package java6035.tools.ASM;/** * dLocal * * represents an .local directive in ASM file. ".local sym" declare that * symbol sym is local and cannot be referenced from other files. */public class dLocal extends ASMDirective{ public String sym; /** * Creates a .local directive for symbol @param sym. **/ public dLocal(String sym) { super(ASMDirective.LOCAL); this.sym = sym; } /** * Returns the string representation. */ public String toString() { return ".local "+sym; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -