Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 98324f7c89840374c57ba54eeb4785127141f853 (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
/*******************************************************************************
 * Copyright (c) 2009 Red Hat Inc. 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:
 *     Alexander Kurtakov - initial API and implementation
 *******************************************************************************/
package org.eclipse.dltk.sh.internal.core.parser;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.dltk.ast.declarations.FieldDeclaration;
import org.eclipse.dltk.ast.declarations.MethodDeclaration;
import org.eclipse.dltk.ast.declarations.ModuleDeclaration;
import org.eclipse.dltk.compiler.IElementRequestor.FieldInfo;

public class ShellModuleDeclaration extends ModuleDeclaration {

	private List<FunctionInfo> functionsInfo;
	private List<FieldInfo> variablesInfo;

	public ShellModuleDeclaration(int sourceLength) {
		super(sourceLength);
		functionsInfo = new ArrayList<>();
		variablesInfo = new ArrayList<>();
	}

	public void setFunctions(List<MethodDeclaration> functions) {
		getFunctionList().addAll(functions);
		for (MethodDeclaration method : functions) {
			FunctionInfo mInfo = new FunctionInfo();
			mInfo.name = method.getName();
			mInfo.nameSourceStart = method.getNameStart();
			mInfo.nameSourceEnd = method.getNameEnd();
			mInfo.declarationStart = method.sourceStart();
			mInfo.declarationEnd = method.sourceEnd();
			functionsInfo.add(mInfo);
		}
	}

	public void setVariables(List<FieldDeclaration> variables) {
		getVariablesList().addAll(variables);
		for (FieldDeclaration method : variables) {
			FieldInfo vInfo = new FieldInfo();
			vInfo.name = method.getName();
			vInfo.nameSourceStart = method.getNameStart();
			vInfo.nameSourceEnd = method.getNameEnd();
			vInfo.declarationStart = method.sourceStart();
			variablesInfo.add(vInfo);
		}
	}

	public List<FunctionInfo> getFunctionsInfo() {
		return functionsInfo;
	}

	public List<FieldInfo> getFieldsInfo() {
		return variablesInfo;
	}
}

Back to the top