aslcompiler.l (3ee58df503b601febeef11f23c4a7e2adf425b96) | aslcompiler.l (08ddfe865704486086ac90d3a344271bcea9e6c6) |
---|---|
1%{ 2/****************************************************************************** 3 * 4 * Module Name: aslcompiler.l - Flex/lex input file 5 * 6 *****************************************************************************/ 7 8/****************************************************************************** --- 805 unchanged lines hidden (view full) --- 814 int index = 0; 815 count (0); 816 while (!isdigit (AslCompilertext[index])) 817 { 818 index++; 819 } 820 821 /* | 1%{ 2/****************************************************************************** 3 * 4 * Module Name: aslcompiler.l - Flex/lex input file 5 * 6 *****************************************************************************/ 7 8/****************************************************************************** --- 805 unchanged lines hidden (view full) --- 814 int index = 0; 815 count (0); 816 while (!isdigit (AslCompilertext[index])) 817 { 818 index++; 819 } 820 821 /* |
822 * The eror code is contained inside the | 822 * The error code is contained inside the |
823 * {ErrorCode} pattern. Extract it and log it 824 * as the expected error code. 825 */ 826 s = UtLocalCacheCalloc (ASL_ERROR_CODE_LENGTH + 1); 827 memcpy (s, AslCompilertext + index, ASL_ERROR_CODE_LENGTH); 828 AslLogExpectedExceptionByLine (s); } 829 830{NameSeg} { char *s; --- 56 unchanged lines hidden --- | 823 * {ErrorCode} pattern. Extract it and log it 824 * as the expected error code. 825 */ 826 s = UtLocalCacheCalloc (ASL_ERROR_CODE_LENGTH + 1); 827 memcpy (s, AslCompilertext + index, ASL_ERROR_CODE_LENGTH); 828 AslLogExpectedExceptionByLine (s); } 829 830{NameSeg} { char *s; --- 56 unchanged lines hidden --- |