nodecast.java
来自「有关编译器的编译器.」· Java 代码 · 共 26 行
JAVA
26 行
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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;import java.util.*;import org.sablecc.sablecc.node.*;public class NodeCast implements Cast{ public final static NodeCast instance = new NodeCast(); private NodeCast() {} public Object cast(Object o) { return (Node) o; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?