1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-05 08:05:24 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2013-07-25 15:21:06 -07:00
parent 5b6fca2b32
commit 02d438a3dd

View file

@ -13,25 +13,28 @@ package org.eclipse.cdt.core.parser;
/** /**
* @author jcamelon * @author jcamelon
*
*/ */
public enum ParserMode { public enum ParserMode {
/**
// do not follow inclusions, do not parse function/method bodies * Do not follow inclusions, do not parse function/method bodies.
*/
QUICK_PARSE, QUICK_PARSE,
/**
//follow inclusions, do not parse function/method bodies * Follow inclusions, do not parse function/method bodies.
*/
STRUCTURAL_PARSE, STRUCTURAL_PARSE,
/**
// follow inclusions, parse function/method bodies * Follow inclusions, parse function/method bodies.
*/
COMPLETE_PARSE, COMPLETE_PARSE,
/**
// follow inclusions, parse function/method bodies, stop at particular offset * Follow inclusions, parse function/method bodies, stop at a particular offset.
// provide optimized lookup capability for querying symbols * Provide optimized lookup capability for querying symbols.
*/
COMPLETION_PARSE, COMPLETION_PARSE,
/**
// follow inclusions, parse function/method bodies, stop at particular offset * Follow inclusions, parse function/method bodies, stop at a particular offset.
// provide specific semantic information about an offset range or selection * Provide specific semantic information about an offset range or selection.
*/
SELECTION_PARSE, SELECTION_PARSE,
} }