Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LabComm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Blomdell
LabComm
Commits
98cc5f9e
Commit
98cc5f9e
authored
9 years ago
by
Sven Gestegård Robertz
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of git.cs.lth.se:sven/labcomm-core
parents
58d2417c
318852d7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/dynamic/test/DynamicPart.java
+6
-6
6 additions, 6 deletions
examples/dynamic/test/DynamicPart.java
examples/dynamic/test/TestLabcommGen.java
+6
-6
6 additions, 6 deletions
examples/dynamic/test/TestLabcommGen.java
with
12 additions
and
12 deletions
examples/dynamic/test/DynamicPart.java
+
6
−
6
View file @
98cc5f9e
...
@@ -22,9 +22,9 @@ import se.lth.control.labcomm2014.Decoder;
...
@@ -22,9 +22,9 @@ import se.lth.control.labcomm2014.Decoder;
import
se.lth.control.labcomm2014.DecoderChannel
;
import
se.lth.control.labcomm2014.DecoderChannel
;
import
se.lth.control.labcomm2014.Encoder
;
import
se.lth.control.labcomm2014.Encoder
;
import
se.lth.control.labcomm2014.EncoderChannel
;
import
se.lth.control.labcomm2014.EncoderChannel
;
import
AST.
Parser
;
import
se.lth.control.labcomm2014.compiler.LabComm
Parser
;
import
AST.
Scanner
;
import
se.lth.control.labcomm2014.compiler.LabComm
Scanner
;
import
AST
.Program
;
import
se.lth.control.labcomm2014.compiler
.Program
;
import
beaver.Parser.Exception
;
import
beaver.Parser.Exception
;
public
class
DynamicPart
{
public
class
DynamicPart
{
...
@@ -160,8 +160,8 @@ public class DynamicPart {
...
@@ -160,8 +160,8 @@ public class DynamicPart {
public
static
InRAMCompiler
generateCode
(
String
lcDecl
,
HashMap
<
String
,
String
>
handlers
)
{
public
static
InRAMCompiler
generateCode
(
String
lcDecl
,
HashMap
<
String
,
String
>
handlers
)
{
Program
ast
=
null
;
Program
ast
=
null
;
InputStream
in
=
new
ByteArrayInputStream
(
lcDecl
.
getBytes
());
InputStream
in
=
new
ByteArrayInputStream
(
lcDecl
.
getBytes
());
Scanner
scanner
=
new
Scanner
(
in
);
LabComm
Scanner
scanner
=
new
LabComm
Scanner
(
in
);
Parser
parser
=
new
Parser
();
LabComm
Parser
parser
=
new
LabComm
Parser
();
Collection
errors
=
new
LinkedList
();
Collection
errors
=
new
LinkedList
();
InRAMCompiler
irc
=
null
;
InRAMCompiler
irc
=
null
;
...
@@ -200,7 +200,7 @@ public class DynamicPart {
...
@@ -200,7 +200,7 @@ public class DynamicPart {
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
201
3
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
201
4
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
...
This diff is collapsed.
Click to expand it.
examples/dynamic/test/TestLabcommGen.java
+
6
−
6
View file @
98cc5f9e
...
@@ -22,9 +22,9 @@ import se.lth.control.labcomm2014.Decoder;
...
@@ -22,9 +22,9 @@ import se.lth.control.labcomm2014.Decoder;
import
se.lth.control.labcomm2014.DecoderChannel
;
import
se.lth.control.labcomm2014.DecoderChannel
;
import
se.lth.control.labcomm2014.Encoder
;
import
se.lth.control.labcomm2014.Encoder
;
import
se.lth.control.labcomm2014.EncoderChannel
;
import
se.lth.control.labcomm2014.EncoderChannel
;
import
AST.
Parser
;
import
se.lth.control.labcomm2014.compiler.LabComm
Parser
;
import
AST.
Scanner
;
import
se.lth.control.labcomm2014.compiler.LabComm
Scanner
;
import
AST
.Program
;
import
se.lth.control.labcomm2014.compiler
.Program
;
import
beaver.Parser.Exception
;
import
beaver.Parser.Exception
;
public
class
TestLabcommGen
{
public
class
TestLabcommGen
{
...
@@ -163,8 +163,8 @@ public class TestLabcommGen {
...
@@ -163,8 +163,8 @@ public class TestLabcommGen {
public
static
InRAMCompiler
generateCode
(
String
lcDecl
,
HashMap
<
String
,
String
>
handlers
)
{
public
static
InRAMCompiler
generateCode
(
String
lcDecl
,
HashMap
<
String
,
String
>
handlers
)
{
Program
ast
=
null
;
Program
ast
=
null
;
InputStream
in
=
new
ByteArrayInputStream
(
lcDecl
.
getBytes
());
InputStream
in
=
new
ByteArrayInputStream
(
lcDecl
.
getBytes
());
Scanner
scanner
=
new
Scanner
(
in
);
LabComm
Scanner
scanner
=
new
LabComm
Scanner
(
in
);
Parser
parser
=
new
Parser
();
LabComm
Parser
parser
=
new
LabComm
Parser
();
Collection
errors
=
new
LinkedList
();
Collection
errors
=
new
LinkedList
();
InRAMCompiler
irc
=
null
;
InRAMCompiler
irc
=
null
;
...
@@ -203,7 +203,7 @@ public class TestLabcommGen {
...
@@ -203,7 +203,7 @@ public class TestLabcommGen {
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
private
static
InRAMCompiler
handleAst
(
Program
lcAST
,
HashMap
<
String
,
String
>
handlers
)
{
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
Map
<
String
,
String
>
genCode
=
new
HashMap
<
String
,
String
>();
try
{
try
{
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
201
3
);
lcAST
.
J_gen
(
genCode
,
"labcomm.generated"
,
201
4
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment