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
532e7310
Unverified
Commit
532e7310
authored
Dec 14, 2017
by
sschneiders
Committed by
GitHub
Dec 14, 2017
Browse files
comment system out prints
parent
9b3b94c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/embeddedmontiarc/embeddedmontiarc/_symboltable/EmbeddedMontiArcSymbolTableCreator.java
View file @
532e7310
...
...
@@ -152,7 +152,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
return
;
}
// 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();
instanceSymbolCreator
.
createInstances
(
(
ComponentSymbol
)
(
Log
.
errorIfNull
(
node
.
getComponent
().
getSymbol
().
orElse
(
null
)))
...
...
@@ -422,7 +422,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
}
else
if
(
portName
.
getPortArray
().
get
().
getLowerbound
().
isPresent
())
{
names
=
getmnPortNameParts
(
name
,
portName
);
}
else
{
System
.
out
.
println
(
portName
.
toString
());
//
System.out.println(portName.toString());
int
size
=
countPortArrayInstances
(
name
,
portName
.
getCompName
().
orElse
(
null
),
portName
.
getCompArray
().
orElse
(
null
));
Log
.
debug
(
"Size"
+
size
,
"PortNameParts"
);
...
...
@@ -476,7 +476,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
present
=
curScope
.
resolve
(
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
PortSymbol
.
KIND
).
isPresent
();
if
(
present
)
++
counter
;
else
{
System
.
out
.
println
(
curScope
.
toString
());
//
System.out.println(curScope.toString());
Log
.
debug
(
"Could not resolve "
+
portName
+
"["
+
(
counter
+
1
)
+
"]"
,
"countPortArrayInstances"
);
}
}
...
...
@@ -484,7 +484,7 @@ public class EmbeddedMontiArcSymbolTableCreator extends EmbeddedMontiArcSymbolTa
//TODO
present
=
true
;
Log
.
debug
(
"compInstanceName: "
+
compName
,
"Resolving"
);
System
.
out
.
println
(
compName
);
//
System.out.println(compName);
ComponentInstanceSymbol
symbol
;
symbol
=
curScope
.<
ComponentInstanceSymbol
>
resolve
(
compName
,
ComponentInstanceSymbol
.
KIND
).
get
();
for
(
PortSymbol
portSymbol
:
symbol
.
getComponentType
().
getAllPorts
())
{
...
...
Write
Preview
Markdown
is supported
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