diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-03-30 15:48:37 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-03-30 15:48:37 +0000 |
commit | d3b8a1609e51f9ba80bc881a0966ef2db55a5646 (patch) | |
tree | 48dbbdf4460770c89bb0a85bfae8f307e986f640 /idlc | |
parent | 7143bc4d91a2dbaae271c18ddbfdf52c6880f295 (diff) |
INTEGRATION: CWS sb14 (1.9.10); FILE MERGED
2004/03/12 14:30:30 sb 1.9.10.2: #i21150# Added support for extended attributes (still need to fix TODO in AstAttribute::dumpBlob.
2004/03/05 08:35:21 sb 1.9.10.1: #i21150# Support for rest parameters; clean up.
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/scanner.ll | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/idlc/source/scanner.ll b/idlc/source/scanner.ll index de18ac3da323..c71416dce814 100644 --- a/idlc/source/scanner.ll +++ b/idlc/source/scanner.ll @@ -2,9 +2,9 @@ * * $RCSfile: scanner.ll,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: obo $ $Date: 2003-10-20 13:08:19 $ + * last change: $Author: rt $ $Date: 2004-03-30 16:48:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,6 +76,8 @@ #include <idlc/fehelper.hxx> #endif +#include "attributeexceptions.hxx" + class AstExpression; class AstArray; class AstMember; @@ -310,6 +312,11 @@ out return IDL_OUT; inout return IDL_INOUT; oneway return IDL_ONEWAY; +get return IDL_GET; +set return IDL_SET; + +"..." return IDL_ELLIPSIS; + ("-")?{INT_LITERAL}+(l|L|u|U)? { yylval.ival = asciiToInteger( 10, yytext ); return IDL_INTEGER_LITERAL; |