lr0itemandsetpair.java

来自「有关编译器的编译器.」· Java 代码 · 共 25 行

JAVA
25
字号
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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.                                  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */package org.sablecc.sablecc;final class LR0ItemAndSetPair{  public final LR0Item item;  public final int set    ;  LR0ItemAndSetPair(LR0Item item, int set                     )  {    this.item = item;    this.set = set                 ;  }}

⌨️ 快捷键说明

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