Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
languages
EmbeddedMontiArc
Commits
8e12e34e
Unverified
Commit
8e12e34e
authored
Dec 14, 2017
by
sschneiders
Committed by
GitHub
Dec 14, 2017
Browse files
commented system out prints
parent
b026c537
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/embeddedmontiarc/embeddedmontiarc/_symboltable/EmbeddedMontiArcSymbolTableCreator.java
View file @
8e12e34e
...
@@ -119,7 +119,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
...
@@ -119,7 +119,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
@Override
@Override
public
void
visit
(
ASTEMACompilationUnit
compilationUnit
)
{
public
void
visit
(
ASTEMACompilationUnit
compilationUnit
)
{
System
.
out
.
println
(
"visiting "
+
compilationUnit
.
getComponent
().
getName
());
//
System.out.println("visiting " + compilationUnit.getComponent().getName());
Log
.
debug
(
"Building Symboltable for Component: "
+
compilationUnit
.
getComponent
().
getName
(),
Log
.
debug
(
"Building Symboltable for Component: "
+
compilationUnit
.
getComponent
().
getName
(),
EmbeddedMontiArcSymbolTableCreator
.
class
.
getSimpleName
());
EmbeddedMontiArcSymbolTableCreator
.
class
.
getSimpleName
());
compilationUnitPackage
=
Names
.
getQualifiedName
(
compilationUnit
.
getPackage
());
compilationUnitPackage
=
Names
.
getQualifiedName
(
compilationUnit
.
getPackage
());
...
@@ -153,7 +153,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
...
@@ -153,7 +153,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
return
;
return
;
}
}
// creates all instances which are created through the top level component
// creates all instances which are created through the top level component
System
.
out
.
println
(
"endVisit of "
+
node
.
getComponent
().
getSymbol
().
get
().
getFullName
());
//,"MontiArcSymbolTableCreator");
//
System.out.println("endVisit of " + node.getComponent().getSymbol().get().getFullName()); //,"MontiArcSymbolTableCreator");
// new Error().printStackTrace();
// new Error().printStackTrace();
instanceSymbolCreator
.
createInstances
(
instanceSymbolCreator
.
createInstances
(
(
ComponentSymbol
)
(
Log
.
errorIfNull
(
node
.
getComponent
().
getSymbol
().
orElse
(
null
)))
(
ComponentSymbol
)
(
Log
.
errorIfNull
(
node
.
getComponent
().
getSymbol
().
orElse
(
null
)))
...
@@ -423,7 +423,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
...
@@ -423,7 +423,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
}
else
if
(
portName
.
getPortArray
().
get
().
getLowerbound
().
isPresent
())
{
}
else
if
(
portName
.
getPortArray
().
get
().
getLowerbound
().
isPresent
())
{
names
=
getmnPortNameParts
(
name
,
portName
);
names
=
getmnPortNameParts
(
name
,
portName
);
}
else
{
}
else
{
System
.
out
.
println
(
portName
.
toString
());
//
System.out.println(portName.toString());
int
size
=
countPortArrayInstances
(
name
,
portName
.
getCompName
().
orElse
(
null
),
portName
.
getCompArray
().
orElse
(
null
));
int
size
=
countPortArrayInstances
(
name
,
portName
.
getCompName
().
orElse
(
null
),
portName
.
getCompArray
().
orElse
(
null
));
Log
.
debug
(
"Size"
+
size
,
"PortNameParts"
);
Log
.
debug
(
"Size"
+
size
,
"PortNameParts"
);
...
@@ -477,7 +477,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
...
@@ -477,7 +477,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
present
=
curScope
.
resolve
(
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
PortSymbol
.
KIND
).
isPresent
();
present
=
curScope
.
resolve
(
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
PortSymbol
.
KIND
).
isPresent
();
if
(
present
)
++
counter
;
if
(
present
)
++
counter
;
else
{
else
{
System
.
out
.
println
(
curScope
.
toString
());
//
System.out.println(curScope.toString());
Log
.
debug
(
"Could not resolve "
+
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
"countPortArrayInstances"
);
Log
.
debug
(
"Could not resolve "
+
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
"countPortArrayInstances"
);
}
}
}
}
...
@@ -485,7 +485,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
...
@@ -485,7 +485,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
//TODO
//TODO
present
=
true
;
present
=
true
;
Log
.
debug
(
"compInstanceName: "
+
compName
,
"Resolving"
);
Log
.
debug
(
"compInstanceName: "
+
compName
,
"Resolving"
);
System
.
out
.
println
(
compName
);
//
System.out.println(compName);
ComponentInstanceSymbol
symbol
;
ComponentInstanceSymbol
symbol
;
symbol
=
curScope
.<
ComponentInstanceSymbol
>
resolve
(
compName
,
ComponentInstanceSymbol
.
KIND
).
get
();
symbol
=
curScope
.<
ComponentInstanceSymbol
>
resolve
(
compName
,
ComponentInstanceSymbol
.
KIND
).
get
();
for
(
PortSymbol
portSymbol
:
symbol
.
getComponentType
().
getAllPorts
())
{
for
(
PortSymbol
portSymbol
:
symbol
.
getComponentType
().
getAllPorts
())
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment