PL/0编译器(java version) - Err.java
1: package compiler;
2:
3: import java.io.BufferedWriter;
4:
5: public class Err {
6:
7: public int errCount = 0;
8: public static final String[] errInfo = new String[]{
9: "",
10: "1.应是=而不是:=",
11: "2.=后应为数",
12: "3.标识符后应为=",
13: "4.const,var,procedure 后应为标识符",
14: "5.漏掉逗号或分号",
15: "6.过程说明后的符号不正确",
16: "7.应为语句",
17: "8.程序体内语句后的符号不正确",
18: "9.应为句号",
19: "10.语句之间漏分号",
20: "11.标识符未说明",
21: "12.不可向常量或过程名赋值",
22: "13.应为赋值运算符:=",
23: "14.call后应为标识符",
24: "15.不可调用常量或变量",
25: "16.应为then",
26: "17.应为分号或end",
27: "18.应为do",
28: "19.语句后的符号不正确",
29: "20.应为关系运算符",
30: "21.表达式内不可有过程标识符",
31: "22.漏右括号",
32: "23.因子后不可为此符号",
33: "24.表达式不能以此符号开始",
34: "25.这个数太大",
35: "26.Not Defined Yet",
36: "27.Not Defined Yet",
37: "28.Not Defined Yet",
38: "29.Not Defined Yet",
39: "30.Not Defined Yet",
40: "31.数越界",
41: "32.嵌套层数过大",
42: "33.格式错误,应为右括号",
43: "34.格式错误,应为左括号",
44: "35.read()中的变量未声明"
45: };
46:
47: /**
48: * 打印错误信息
49: * @param errcode
50: */
51: public void report(int errcode,int line) {
52: try {
53: System.out.println("*** line( "+line+"):" + errInfo[errcode] + " ***");
54: PL0.errWriter.write("*** line ( "+line+"):"+ errInfo[errcode] + " ***\n");
55: errCount++;
56: }catch(Exception e){
57: e.printStackTrace();
58: System.out.println("***print error infomation meet with error***");
59: }
60:
61: }
62: }
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
PL/0编译器(java version) - Err.java的更多相关文章
- PL/0编译器(java version) - MainFrame.java
1: /* 2: * To change this license header, choose License Headers in Project Properties. 3: * To chan ...
- PL/0编译器实践---后记
花了几天时间,把清华版的<编译原理>一书中的PL/0编译器实践了一遍.颇有收获,记录如下: 理解代码的技巧,如何理解一份代码,比如这个程序,其逻辑相对于一般程序就比较复杂了,如何翻译,虚拟 ...
- PL/0编译器(java version)–Praser.java
1: package compiler; 2: 3: import java.io.IOException; 4: import java.util.BitSet; 5: 6: /** 7: ...
- PL/0编译器(java version) – SymbolTable.java
1: package compiler; 2: //竟然没有对符号表检查大小,会溢出的. 3: 4: import java.io.IOException; 5: 6: public clas ...
- PL/0编译器(java version) – Scanner.java
1: package compiler; 2: 3: import java.io.BufferedReader; 4: import java.io.FileNotFoundException; ...
- PL/0编译器(java version)–PL0.java
1: package compiler; 2: 3: import java.io.BufferedWriter; 4: import java.io.FileWriter; 5: 6: /* ...
- PL/0编译器(java version) - Interpreter.java
1: package compiler; 2: 3: import java.io.BufferedReader; 4: import java.io.BufferedWriter; 5: imp ...
- PL/0编译器(java version) – Symbol.java
1: package compiler; 2: 3: /** 4: * 采用全局变量sym来存储符号码,并用全局变量id和num来传递语义值 5: * 6: * @author jiangnan ...
- PL/0编译器(java version)–Pcode.java
1: package compiler; 2: 3: /** 4: * //虚拟机指令 5: * 6: * @author jiangnan 7: * 8: */ 9: public class ...
随机推荐
- where,having与 group by连用的区别
select 列a,聚合函数 from 表名 where 过滤条件 group by 列a having 过滤条件 group by 字句也和where条件语句结合在一起使用.当结合在一起时,wher ...
- 05Spring_Bean属性的集合类型的注入
- 域策略禁用usb
文档及模板可在 http://pan.baidu.com/s/1qYTcjTy 下载 pro_usb_users.adm 此模板可禁用到 指定盘符,针对用户策略 pro_usb_computers ...
- linux测速软件speedtest-cli
linux测速软件: https://github.com/sivel/speedtest-cli 以下是我在gentoo上测的
- Linux及安全——模块
Linux及安全——模块 一.模块的编译.生成.测试.删除 1.编写模块代码 编写:gedit test.c 查看:cat test.c 2.查看版本信息 3.编写Makefile obj-m :这个 ...
- 实践GDB
调试工具简介:GDB Unix程序员最常用的调试工具是GDB,这是由Richard Stallman(开源软件运动的领路人) 开发的GNU项目调试器,该工具在Linux开发中扮演了关键的角色. CG ...
- Opencv step by step - 图像变换
这里举出三个案例: #include <cv.h> #include <highgui.h> void image_smooth(IplImage * image) { cvN ...
- Jenkins进阶系列之——15Maven获取Jenkins的Subversion的版本号
各位小伙伴们在工作中总是会碰到各种各样的奇葩需求,今天给大家说说Maven怎么在Jenkins中获取Subversion的版本号. Jenkins自己的环境变量中包含了很多有用的的参数,详情查看:ht ...
- Thrift搭建分布式微服务(四)
第一篇 <连接配置> 第二篇 <连接池> 第三篇 <标准通信> 第四篇 快速暴露接口 之前的文章,我们介绍了如何使用连接池管理Thrift节点,以及使用Thri ...
- 解决jquery $符号的冲突
今天做项目的时候,写了一个ajax提交的js函数,然后在js调试的时候,提示发现 $.ajax ,前面的$ 符号不见了,通过网上搜索找到了下面的解决方法 jQuery中需要用到$符号,如果其他js库也 ...