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

📄 tokens.txt

📁 有关编译器的编译器.
💻 TXT
字号:
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This file is part of SableCC.                             * * See the file "LICENSE" for copyright information and the  * * terms and conditions for copying, distribution and        * * modification of SableCC.                                  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */// 0 : xxx.node// 1 : xxx.analysis// 2 : TxxxMacro:VariableTextToken/* This file was generated by SableCC (http://www.sablecc.org/). */package $0$;import $1$.*;public final class $2$ extends Token{    public $2$(String text)    {        setText(text);    }    public $2$(String text, int line, int pos)    {        setText(text);        setLine(line);        setPos(pos);    }    public Object clone()    {      return new $2$(getText(), getLine(), getPos());    }    public void apply(Switch sw)    {        ((Analysis) sw).case$2$(this);    }}$// 0 : xxx.node// 1 : xxx.analysis// 2 : Txxx// 3 : xxxMacro:FixedTextToken/* This file was generated by SableCC (http://www.sablecc.org/). */package $0$;import $1$.*;public final class $2$ extends Token{    public $2$()    {        super.setText("$3$");    }    public $2$(int line, int pos)    {        super.setText("$3$");        setLine(line);        setPos(pos);    }    public Object clone()    {      return new $2$(getLine(), getPos());    }    public void apply(Switch sw)    {        ((Analysis) sw).case$2$(this);    }    public void setText(String text)    {        throw new RuntimeException("Cannot change $2$ text.");    }}$

⌨️ 快捷键说明

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