Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: facb5d10140f607c3a1e746e84cbf030646cb22f (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
 * Copyright (c) 2013 QNX Software Systems and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package org.eclipse.cdt.internal.qt.core.pdom;

import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
import org.eclipse.cdt.core.dom.ast.IASTImageLocation;
import org.eclipse.cdt.core.dom.ast.IASTPreprocessorIncludeStatement;

/**
 * The location of the signal/slot reference is stored as the location of the parent
 * macro expansion + an offset, which is the number of characters between the start
 * of the expansion and the start of the argument (including whitespace).  E.g. in,
 *
 * <pre>
 * MACRO( expansionParameter )
 * ^      ^                ^ c: end of reference name
 * |      +----------------- b: start of reference name
 * +------------------------ a: start of macro expansion
 * </pre>
 *
 * The offset is b - a and length is c - b.  This means that the result of 'Find
 * References' will highlight just "parameter".
 */
public class QtASTImageLocation implements IASTImageLocation {

	private final IASTFileLocation refLocation;
	private final int offset;
	private final int length;

	public QtASTImageLocation(IASTFileLocation refLocation, int offset, int length) {
		this.refLocation = refLocation;
		this.offset = offset;
		this.length = length;
	}

	public int getOffset() {
		return offset;
	}

	public int getLength() {
		return length;
	}

	@Override
	public IASTFileLocation asFileLocation() {
		return this;
	}

	@Override
	public String getFileName() {
		return refLocation.getFileName();
	}

	@Override
	public int getNodeOffset() {
		return refLocation.getNodeOffset() + offset;
	}

	@Override
	public int getNodeLength() {
		return length;
	}

	@Override
	public int getStartingLineNumber() {
		return refLocation.getStartingLineNumber();
	}

	@Override
	public int getEndingLineNumber() {
		return refLocation.getEndingLineNumber();
	}

	@Override
	public IASTPreprocessorIncludeStatement getContextInclusionStatement() {
		return refLocation.getContextInclusionStatement();
	}

	@Override
	public int getLocationKind() {
		return REGULAR_CODE;
	}
}

Back to the top