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

📄 grammar.y

📁 ICE-3.2 一个开源的中间件
💻 Y
字号:
%{// **********************************************************************//// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.//// This copy of Ice is licensed to you under the terms described in the// ICE_LICENSE file included in this distribution.//// **********************************************************************#include <NodeI.h>#include <Parser.h>#ifdef _MSC_VER// I get these warnings from some bison versions:// warning C4102: 'yyoverflowlab' : unreferenced label#   pragma warning( disable : 4102 )// warning C4065: switch statement contains 'default' but no 'case' labels#   pragma warning( disable : 4065 )#endifusing namespace std;using namespace Ice;voidyyerror(const char* s){    parser->error(s);}%}%pure_parser%expect 4%token TOK_NUMBER%%start: expr{    parser->setResult($$);};expr: TOK_NUMBER{    $$ = $1;}| expr '+' expr{    $$ = new Complex::AddNodeI($1, $3);}| '(' expr ')'{    $$ = $2;}| expr '*' expr{    $$ = new Complex::MultiplyNodeI($1, $3);};%%

⌨️ 快捷键说明

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