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
generators
EMAM2Wasm
Commits
b09cf36a
Commit
b09cf36a
authored
Aug 23, 2019
by
Bernhard Rumpe
Browse files
BR-sy
parent
0d8d2cc1
Pipeline
#175156
failed with stage
in 5 minutes and 25 seconds
Changes
213
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
b09cf36a
...
...
@@ -179,4 +179,4 @@ fabric.properties
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
\ No newline at end of file
# modules.xml
.gitlab-ci.yml
View file @
b09cf36a
# (c) https://github.com/MontiCore/monticore
image
:
maven:3-jdk-8
...
...
@@ -9,4 +10,4 @@ masterJob:
BranchJob
:
script
:
"
mvn
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
-B
clean
install
--settings
settings.xml"
except
:
-
master
\ No newline at end of file
-
master
.travis.yml
View file @
b09cf36a
# (c) https://github.com/MontiCore/monticore
language
:
java
cache
:
...
...
CONTRIBUTING.md
View file @
b09cf36a
<!-- (c) https://github.com/MontiCore/monticore -->
# Contributing
THIS DOCUMENTATION IS INVALID:
...
...
README.md
View file @
b09cf36a
<!-- (c) https://github.com/MontiCore/monticore -->
[
![Linux Build
][
travis-image
]
][travis-url]
[
![Windows Build
][
appveyor-image
]
][appveyor-url]
[
![Coverage Codecov
][
codecov-image
]
][codecov-url]
...
...
appveyor.yml
View file @
b09cf36a
# (c) https://github.com/MontiCore/monticore
version
:
'
{build}'
skip_tags
:
true
clone_depth
:
10
...
...
pom.xml
View file @
b09cf36a
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<project
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
...
...
@@ -280,4 +281,4 @@
</distributionManagement>
</project>
\ No newline at end of file
</project>
settings.xml
View file @
b09cf36a
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<settings
xmlns=
"http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
...
...
@@ -60,4 +61,4 @@
<activeProfiles>
<activeProfile>
se-nexus
</activeProfile>
</activeProfiles>
</settings>
\ No newline at end of file
</settings>
src/acceptance-test/java/de/monticore/lang/monticar/EmptyAT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar
;
import
org.junit.jupiter.api.Test
;
...
...
src/integration-test/java/de/monticore/lang/monticar/emam2wasm/CppStepIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.emam2wasm
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
src/integration-test/java/de/monticore/lang/monticar/emam2wasm/ModelStepIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.emam2wasm
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
src/integration-test/java/de/monticore/lang/monticar/emam2wasm/WebStepIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.emam2wasm
;
import
de.monticore.lang.embeddedmontiarc.embeddedmontiarc._symboltable.ExpandedComponentInstanceSymbol
;
...
...
src/integration-test/java/de/monticore/lang/monticar/generator/CppGeneratorIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.generator
;
import
static
de
.
monticore
.
lang
.
monticar
.
generator
.
FileContentAssert
.
assertThat
;
...
...
src/integration-test/java/de/monticore/lang/monticar/generator/FileContentAssert.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.generator
;
import
de.monticore.lang.monticar.util.TextFile
;
...
...
src/integration-test/java/de/monticore/lang/monticar/generator/HtmlGeneratorIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.generator
;
import
static
de
.
monticore
.
lang
.
monticar
.
generator
.
FileContentAssert
.
assertThat
;
...
...
src/integration-test/java/de/monticore/lang/monticar/generator/JsGeneratorIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.generator
;
import
static
de
.
monticore
.
lang
.
monticar
.
generator
.
FileContentAssert
.
assertThat
;
...
...
src/integration-test/java/de/monticore/lang/monticar/setup/AutoSetupIT.java
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
package
de.monticore.lang.monticar.setup
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
src/integration-test/resources/cppfilegeneration/expected/models_arrayPort.cpp
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
#ifndef arraysize
#define arraysize(array) (sizeof(array)/sizeof(array[0]))
#endif
...
...
src/integration-test/resources/cppfilegeneration/expected/models_matrixArrayPort.cpp
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
#ifndef arraysize
#define arraysize(array) (sizeof(array)/sizeof(array[0]))
#endif
...
...
src/integration-test/resources/cppfilegeneration/expected/models_matrixPort.cpp
View file @
b09cf36a
/* (c) https://github.com/MontiCore/monticore */
#ifndef arraysize
#define arraysize(array) (sizeof(array)/sizeof(array[0]))
#endif
...
...
Prev
1
2
3
4
5
…
11
Next
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