1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Patch for Beth Tibbits: PR133723. Add minimal support for pragmas to the DOM.

This commit is contained in:
Doug Schaefer 2006-03-29 16:30:49 +00:00
parent 5e45aa56e8
commit 23c178137e
2 changed files with 2 additions and 0 deletions

View file

@ -243,4 +243,5 @@ public class Keywords {
public static final char[] cUNDEF = "undef".toCharArray(); //$NON-NLS-1$
public static final char[] cERROR = "error".toCharArray(); //$NON-NLS-1$
public static final char[] cINCLUDE_NEXT = "include_next".toCharArray(); //$NON-NLS-1$
public static final char[] cPRAGMA = "pragma".toCharArray(); //$NON-NLS-1$
}

View file

@ -4846,6 +4846,7 @@ abstract class BaseScanner implements IScanner {
ppKeywords.put(Keywords.cUNDEF, ppUndef); //$NON-NLS-1$
ppKeywords.put(Keywords.cERROR, ppError); //$NON-NLS-1$
ppKeywords.put(Keywords.cINCLUDE_NEXT, ppInclude_next); //$NON-NLS-1$
ppKeywords.put(Keywords.cPRAGMA, ppPragma); //$NON-NLS-1$
}
/**