Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java127
1 files changed, 63 insertions, 64 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java
index 78e07f77e5b..a68d5249b71 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPBuiltinVariable.java
@@ -26,93 +26,92 @@ import org.eclipse.cdt.core.dom.ast.IType;
* An example is the built-in variable __func__.
*/
public class CPPBuiltinVariable extends CPPVariable {
- private IType type;
- private char[] name;
- private IScope scope;
-
- public CPPBuiltinVariable(IType type, char[] name, IScope scope) {
- super(null);
- this.type = type;
- this.name = name;
- this.scope = scope;
- }
-
- @Override
+ private IType type;
+ private char[] name;
+ private IScope scope;
+
+ public CPPBuiltinVariable(IType type, char[] name, IScope scope) {
+ super(null);
+ this.type = type;
+ this.name = name;
+ this.scope = scope;
+ }
+
+ @Override
public IType getType() {
- return type;
- }
+ return type;
+ }
- @Override
+ @Override
public String getName() {
- return String.valueOf(name);
- }
+ return String.valueOf(name);
+ }
- @Override
+ @Override
public char[] getNameCharArray() {
- return name;
- }
+ return name;
+ }
- @Override
+ @Override
public IScope getScope() {
- return scope;
- }
+ return scope;
+ }
- /**
- * Returns null.
- */
- @Override
+ /**
+ * Returns null.
+ */
+ @Override
public IASTName[] getDeclarations() {
- return null;
- }
+ return null;
+ }
- /**
- * Returns null.
- */
- @Override
+ /**
+ * Returns null.
+ */
+ @Override
public IASTNode getDefinition() {
- return null;
- }
+ return null;
+ }
- /**
- * Does nothing.
- */
- @Override
+ /**
+ * Does nothing.
+ */
+ @Override
public void addDefinition(IASTNode node) {
- // do nothing
- }
+ // do nothing
+ }
- /**
- * Does nothing.
- */
- @Override
+ /**
+ * Does nothing.
+ */
+ @Override
public void addDeclaration(IASTNode node) {
- // do nothing
- }
+ // do nothing
+ }
- @Override
+ @Override
public String[] getQualifiedName() {
- String[] temp = new String[1];
- temp[0] = String.valueOf(name);
-
- return temp;
- }
+ String[] temp = new String[1];
+ temp[0] = String.valueOf(name);
+ return temp;
+ }
- @Override
+ @Override
public char[][] getQualifiedNameCharArray() {
- char[][] temp = new char[1][];
- temp[0] = name;
+ char[][] temp = new char[1][];
+ temp[0] = name;
- return temp;
- }
+ return temp;
+ }
- /**
- * Returns true.
- */
- @Override
+ /**
+ * Returns true.
+ */
+ @Override
public boolean isGloballyQualified() {
- return true;
- }
+ return true;
+ }
@Override
public IBinding getOwner() {

Back to the top