代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/249104/4457354
java~1~ repeatcommandnode.java~1~
package littlecompiler;
public class RepeatCommandNode implements Node {
private int number;
private Node commandListNode;
public void parse (Context context) {
context.skipToken ("
www.eeworm.com/read/233448/4683706
c 20040910-1.c
/* Tests error recovery for invalid code. */
__attribute__((foo) int f (){} /* { dg-error "(parse error|syntax error|expected '\\)') before 'int'" } */
www.eeworm.com/read/232657/4696755
java programnode.java
package language;
// ::= program
public class ProgramNode extends Node {
private Node commandListNode;
public void parse(Context context) throws ParseException {
www.eeworm.com/read/232657/4696769
java primitivecommandnode.java
// ::= go | right | left
public class PrimitiveCommandNode extends Node {
private String name;
public void parse(Context context) throws ParseException {
name =
www.eeworm.com/read/232657/4696770
java commandnode.java
// ::= |
public class CommandNode extends Node {
private Node node;
public void parse(Context context) throws ParseException {
if (co
www.eeworm.com/read/220843/4838667
c tclparse.c
/*
* tclParse.c --
*
* This file contains a collection of procedures that are used
* to parse Tcl commands or parts of commands (like quoted
* strings or nested sub-commands).
*
* Copyr
www.eeworm.com/read/190666/5174649
c crash58.c
// Build don't link:
// GROUPS passed old-abort
class X {
public:
void doit();
};
X::::doit()// ERROR - (syntax|parse) error.*
{
}
www.eeworm.com/read/189308/5201460
java main.java
public class Main {
public static void main(String argv[])
{
try {
/* allocate a parser object */
parser parse_obj = new parser();
/* prompt the user */
www.eeworm.com/read/189308/5201464
java token.java
package java_cup.runtime;
/** This subclass of symbol represents (at least) terminal symbols returned
* by the scanner and placed on the parse stack. At present, this
* class does nothin