blob: 8bd00a8648e802b6342c1a85e27588888b5b8f22 (
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
|
/*******************************************************************************
* Copyright (c) 2015 Jeff Martin.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public
* License v3.0 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.analysis;
import com.strobel.assembler.metadata.TypeDefinition;
import com.strobel.decompiler.languages.java.ast.AstNode;
import com.strobel.decompiler.languages.java.ast.DepthFirstAstVisitor;
import com.strobel.decompiler.languages.java.ast.Keys;
import com.strobel.decompiler.languages.java.ast.TypeDeclaration;
import cuchaz.enigma.translation.representation.entry.ClassDefEntry;
public class SourceIndexVisitor extends DepthFirstAstVisitor<SourceIndex, Void> {
@Override
public Void visitTypeDeclaration(TypeDeclaration node, SourceIndex index) {
TypeDefinition def = node.getUserData(Keys.TYPE_DEFINITION);
ClassDefEntry classEntry = ClassDefEntry.parse(def);
index.addDeclaration(node.getNameToken(), classEntry);
return node.acceptVisitor(new SourceIndexClassVisitor(classEntry), index);
}
@Override
protected Void visitChildren(AstNode node, SourceIndex index) {
for (final AstNode child : node.getChildren()) {
child.acceptVisitor(this, index);
}
return null;
}
}
|