Changeset 387
- Timestamp:
- Oct 24, 2008, 10:43:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nomc/parser_c/class_parser.c
r386 r387 142 142 GTokenValue value; 143 143 144 /* Method implementations must start with " impl" which is registered as a symbol. Here we check if144 /* Method implementations must start with "public" which is registered as a symbol. Here we check if 145 145 the token is a symbol. */ 146 146 exitIfNotMatchNext(G_TOKEN_SYMBOL, "Method implementation must start with 'public'."); … … 149 149 pCurSymbol=value.v_symbol; 150 150 151 /* Check if token is " impl". */151 /* Check if token is "public". */ 152 152 if(!pCurSymbol || pCurSymbol->uiSymbolToken!=NOMC_SYMBOL_PUBLIC) 153 153 {
Note:
See TracChangeset
for help on using the changeset viewer.