Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sven Gestegård Robertz
LabComm
Commits
7e2e5f6c
Commit
7e2e5f6c
authored
May 16, 2014
by
Sven Gestegård Robertz
Browse files
updated to new API w/ version parameter = 2013
parent
5cf80f4b
Changes
3
Hide whitespace changes
Inline
Side-by-side
examples/dynamic/test/DynamicPart.java
View file @
7e2e5f6c
...
...
@@ -200,7 +200,7 @@ public class DynamicPart {
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
2013
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
...
...
examples/dynamic/test/TestLabCommCompiler.java
View file @
7e2e5f6c
...
...
@@ -210,7 +210,7 @@ public class TestLabCommCompiler {
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
2013
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
...
...
examples/dynamic/test/TestLabcommGen.java
View file @
7e2e5f6c
...
...
@@ -203,7 +203,7 @@ public class TestLabcommGen {
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
2013
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
...
...
@@ -287,7 +287,7 @@ public class TestLabcommGen {
private
static
InRAMCompiler
handleAstSeparate
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
2013
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
...
...
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