Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

Курсовая работа1 / Tokenizer / UCcTokenizerConsts

.pas
Скачиваний:
10
Добавлен:
01.05.2014
Размер:
2.08 Кб
Скачать
{
C-like language compiler v0.1.0.485

12 november 2007

Copyright (C) 2006, 2007 Igor Krooshch
rheo.ikro@gmail.com

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
}

unit UCcTokenizerConsts;

interface

resourcestring
SCcErrorPrefix = '(%d, %d): ';
SCcTokenUnexpectedSymbolInIdentifier = 'Unexpected symbol in identifier';
SCcTokenUnexpectedEndOfFloatConst =
'Unexpected end of fractional part of constant';
SCcTokenUnexpectedEndOfFloatExpConst =
'Unexpected end of exponential part of constant';
SCcTokenUndefinedTypeOfConst = 'Undefined type of constant';
SCcTokenIntegerPartError =
'Integer part of floating-point constant cannot be octal';
SCcTokenUnexpectedSymbolError = 'Unexpected symbol';
SCcTokenUnexpectedEOFError = 'Unexpected end of file';
SCcTokenInFloatRepError = 'Error in representing floating-point constant';
SCcTokenNotYetImplemented = 'Not yet implemented';
SCcTokenUnexpectedEndOfLine = 'Unexpected end of line';
SCcTokenInvalidIntValFmt = '''%s'' is not a valid integer value';
SCcTokenFloatIsNotAllowed = 'Floating-point value is not allowed';
SCcTokenCharCodeOutOfRange = 'Character code is out of range';
SCcTokenHexValueIsTooShort = 'Hexadecimal value must have at least one digit';
SCcTokenExpectedButFoundFmt = '''%s'' expected, but ''%s'' is found';

implementation

end.
Соседние файлы в папке Tokenizer