Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/ASTCodeScope.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/ASTCodeScope.java117
1 files changed, 0 insertions, 117 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/ASTCodeScope.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/ASTCodeScope.java
deleted file mode 100644
index b8086e79435..00000000000
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/ASTCodeScope.java
+++ /dev/null
@@ -1,117 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-/*
- * Created on Sep 2, 2003
- *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package org.eclipse.cdt.internal.core.parser.ast.complete;
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.List;
-
-import org.eclipse.cdt.core.parser.ISourceElementRequestor;
-import org.eclipse.cdt.core.parser.ast.IASTCodeScope;
-import org.eclipse.cdt.core.parser.ast.IASTDeclaration;
-import org.eclipse.cdt.core.parser.ast.IASTFunction;
-import org.eclipse.cdt.core.parser.ast.IReferenceManager;
-import org.eclipse.cdt.internal.core.parser.pst.IContainerSymbol;
-
-/**
- * @author jcamelon
- *
- */
-public class ASTCodeScope extends ASTScope implements IASTCodeScope {
-
- private List declarations = null;
- private final IASTCodeScope ownerCodeScope;
-
- /**
- * @param newScope
- */
- public ASTCodeScope(IContainerSymbol newScope) {
- super( newScope );
- ownerCodeScope = ( newScope.getContainingSymbol().getASTExtension().getPrimaryDeclaration() instanceof IASTCodeScope ) ?
- (IASTCodeScope) newScope.getContainingSymbol().getASTExtension().getPrimaryDeclaration() : null;
-
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.parser.ISourceElementCallbackDelegate#acceptElement(org.eclipse.cdt.core.parser.ISourceElementRequestor)
- */
- public void acceptElement(ISourceElementRequestor requestor, IReferenceManager manager) {
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.parser.ISourceElementCallbackDelegate#enterScope(org.eclipse.cdt.core.parser.ISourceElementRequestor)
- */
- public void enterScope(ISourceElementRequestor requestor, IReferenceManager manager) {
- try
- {
- requestor.enterCodeBlock( this );
- }
- catch (Exception e)
- {
- /* do nothing */
- }
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.parser.ISourceElementCallbackDelegate#exitScope(org.eclipse.cdt.core.parser.ISourceElementRequestor)
- */
- public void exitScope(ISourceElementRequestor requestor, IReferenceManager manager) {
- try
- {
- requestor.exitCodeBlock( this );
- }
- catch (Exception e)
- {
- /* do nothing */
- }
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.parser.ast.IASTCodeScope#getOwnerCodeScope()
- */
- public IASTCodeScope getOwnerCodeScope()
- {
- return ownerCodeScope;
- }
-
- public Iterator getDeclarations()
- {
- if(declarations != null)
- return declarations.iterator();
- return super.getDeclarations();
- }
-
- public void addDeclaration(IASTDeclaration declaration)
- {
- declarations.add(declaration);
- }
- public void initDeclarations()
- {
- declarations = new ArrayList(0);
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.parser.ast.IASTCodeScope#getContainingFunction()
- */
- public IASTFunction getContainingFunction() {
- IASTCodeScope i = getOwnerCodeScope();
- while( (i != null ) && !( i instanceof IASTFunction ))
- i = i.getOwnerCodeScope();
- return (IASTFunction) i;
- }
-
-}

Back to the top