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

📄 errors.pas

📁 H++编译器: 一个仿Pascal语言的编译器
💻 PAS
字号:
unit Errors;

interface

const
  { *** Fatal errors *** }
  NotSupportedFormat = 'The format of the program is not supported';
  
  { *** Errors *** }
  WrongSyntax = 'Wrong syntax in expression';
  WrongCountOfArgs = 'Wrong count of arguments in function';
  NotConstant = 'Value is not a constant';
  ErrorInExpression = 'Error in expression';
  DontExists = 'Symbol doesn''t exists';
  SymbolAlreadyExists = 'Symbol already exists';
  InvalidSize = 'Invalid size of variable';
  WrongMaxSize = 'Too large max size';
  WrongAlias = 'Not correct alias syntax';
  NoBeginEnd = 'Can''t find the beginning or the end of the program';
  SymbolRequired = 'Require a symbol';

  { *** Warnings *** }
  NotReturnAnyData = 'This function does not return any data';
  ExtraNotAvailable = 'You cannot add extra information to result';

implementation

end.
 

⌨️ 快捷键说明

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