Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
monticore
EmbeddedMontiArc
languages
Tagging
Commits
b177b476
Commit
b177b476
authored
Mar 25, 2020
by
Bernhard Rumpe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BR-sy
parent
14945e95
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
11 deletions
+0
-11
src/main/grammars/de/monticore/lang/TagSchema.mc4
src/main/grammars/de/monticore/lang/TagSchema.mc4
+0
-1
src/main/grammars/de/monticore/lang/TagValue.mc4
src/main/grammars/de/monticore/lang/TagValue.mc4
+0
-1
src/main/grammars/de/monticore/lang/Tagging.mc4
src/main/grammars/de/monticore/lang/Tagging.mc4
+0
-1
src/main/java/de/monticore/lang/tagging/_symboltable/TagSymbol.java
...ava/de/monticore/lang/tagging/_symboltable/TagSymbol.java
+0
-1
src/main/java/de/monticore/lang/tagging/_symboltable/TagSymbolCreator.java
...monticore/lang/tagging/_symboltable/TagSymbolCreator.java
+0
-1
src/main/java/de/monticore/lang/tagging/generator/TaggingConfiguration.java
...onticore/lang/tagging/generator/TaggingConfiguration.java
+0
-1
src/main/java/de/monticore/lang/tagging/generator/TaggingScript.java
...va/de/monticore/lang/tagging/generator/TaggingScript.java
+0
-1
src/test/java/de/monticore/lang/tagging/ParserTagSchemaTest.java
...t/java/de/monticore/lang/tagging/ParserTagSchemaTest.java
+0
-2
src/test/java/de/monticore/lang/tagging/ParserTaggingTest.java
...est/java/de/monticore/lang/tagging/ParserTaggingTest.java
+0
-2
No files found.
src/main/grammars/de/monticore/lang/TagSchema.mc4
View file @
b177b476
...
...
@@ -4,7 +4,6 @@ package de.monticore.lang;
/**
*
Basic
grammar
to
tag
non
-
functional
properties
*
*
@
author
Michael
von
Wenckstern
*/
grammar
TagSchema
extends
de
.
monticore
.
common
.
Common
{
...
...
src/main/grammars/de/monticore/lang/TagValue.mc4
View file @
b177b476
...
...
@@ -5,7 +5,6 @@ package de.monticore.lang;
*
Basic
grammar
to
tag
non
-
functional
properties
*
grammar
to
create
only
parsers
for
tag
values
*
*
@
author
Michael
von
Wenckstern
*/
grammar
TagValue
extends
de
.
monticore
.
common
.
Common
{
...
...
src/main/grammars/de/monticore/lang/Tagging.mc4
View file @
b177b476
...
...
@@ -4,7 +4,6 @@ package de.monticore.lang;
/**
*
Basic
grammar
to
tag
non
-
functional
properties
*
*
@
author
Michael
von
Wenckstern
*/
grammar
Tagging
extends
de
.
monticore
.
common
.
Common
{
...
...
src/main/java/de/monticore/lang/tagging/_symboltable/TagSymbol.java
View file @
b177b476
...
...
@@ -10,7 +10,6 @@ import java.util.stream.Collectors;
* This is the base class for tags, if you define a new tag
* this class must be extended
*
* @author Michael von Wenckstern
*/
public
class
TagSymbol
extends
de
.
monticore
.
symboltable
.
CommonSymbol
{
...
...
src/main/java/de/monticore/lang/tagging/_symboltable/TagSymbolCreator.java
View file @
b177b476
...
...
@@ -7,7 +7,6 @@ import de.monticore.symboltable.Scope;
/**
* Created by Michael von Wenckstern on 31.05.2016.
*
* @author Michael von Wenckstern
*/
public
interface
TagSymbolCreator
{
void
create
(
ASTTaggingUnit
unit
,
TaggingResolver
scope
);
...
...
src/main/java/de/monticore/lang/tagging/generator/TaggingConfiguration.java
View file @
b177b476
...
...
@@ -19,7 +19,6 @@ import de.se_rwth.commons.configuration.DelegatingConfigurationContributor;
/**
* Configuration of MontiArc generator.
*
* @author Robert Heim
*/
public
class
TaggingConfiguration
implements
Configuration
{
...
...
src/main/java/de/monticore/lang/tagging/generator/TaggingScript.java
View file @
b177b476
...
...
@@ -15,7 +15,6 @@ import org.codehaus.groovy.control.customizers.ImportCustomizer;
/**
* TODO: Write me!
*
* @author Robert Heim, Michael von Wenckstern
*/
public
class
TaggingScript
extends
Script
implements
GroovyRunner
{
...
...
src/test/java/de/monticore/lang/tagging/ParserTagSchemaTest.java
View file @
b177b476
...
...
@@ -24,7 +24,6 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
/**
* @author Robert Heim / Michael von Wenckstern
* is copied from MontiArc4/ParserTaggingTest.java
*/
public
class
ParserTagSchemaTest
{
...
...
@@ -67,7 +66,6 @@ public class ParserTagSchemaTest {
/**
* Visits files of the given file ending and checks whether they are parsable.
*
* @author Robert Heim
* @see Files#walkFileTree(Path, java.nio.file.FileVisitor)
*/
private
static
class
ParseTest
extends
SimpleFileVisitor
<
Path
>
{
...
...
src/test/java/de/monticore/lang/tagging/ParserTaggingTest.java
View file @
b177b476
...
...
@@ -24,7 +24,6 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
/**
* @author Robert Heim / Michael von Wenckstern
* is copied from MontiArc4/ParserTaggingTest.java
*/
public
class
ParserTaggingTest
{
...
...
@@ -67,7 +66,6 @@ public class ParserTaggingTest {
/**
* Visits files of the given file ending and checks whether they are parsable.
*
* @author Robert Heim
* @see Files#walkFileTree(Path, java.nio.file.FileVisitor)
*/
private
static
class
ParseTest
extends
SimpleFileVisitor
<
Path
>
{
...
...
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