Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 139641614d551f088ea6bcd74735ce9f962d9d9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************
 * Copyright (c) 2002, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * IBM Rational Software - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.core.parser;

/**
 * @author jcamelon
 *
 */
public class ParserMode extends Enum {
	
	// do not follow inclusions, do not parse function/method bodies
	public static final ParserMode QUICK_PARSE = new ParserMode( 1 );

	//follow inclusions, do not parse function/method bodies
	public static final ParserMode STRUCTURAL_PARSE = new ParserMode( 2 );
	
	// follow inclusions, parse function/method bodies
	public static final ParserMode COMPLETE_PARSE = new ParserMode( 3 );
	
	// follow inclusions, parse function/method bodies, stop at particular offset
	// provide optimized lookup capability for querying symbols
	public static final ParserMode COMPLETION_PARSE = new ParserMode( 4 );

	// follow inclusions, parse function/method bodies, stop at particular offset
	// provide specific semantic information about an offset range or selection
	public static final ParserMode SELECTION_PARSE = new ParserMode( 5 );
	
	protected ParserMode( int value )
	{
		super( value );
	}
	 
}

Back to the top