Skip to content

Commit

Permalink
BR-sy
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpe committed Mar 27, 2020
1 parent 7bd81ef commit 04764b9
Show file tree
Hide file tree
Showing 207 changed files with 225 additions and 37 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,3 +1,4 @@
# (c) https://github.com/MontiCore/monticore
language: python # Set the build language to Python

python: 3.6 # Set the version of Python to use
Expand All @@ -20,4 +21,4 @@ deploy: # Deploy documentation to Github in the gh_pages branch
github_token: $github_token
local_dir: site
on:
branch: dev
branch: dev
1 change: 1 addition & 0 deletions 00.org/Explanations/FAQ.md
@@ -1,3 +1,4 @@
<!-- (c) https://github.com/MontiCore/monticore -->
# FAQ for MontiCore
### Using Maven
1. Eclipse shows me an error stating that my project configuration is not up-to-date.
Expand Down
1 change: 1 addition & 0 deletions docs/DevelopedLanguages.md 100755 → 100644
@@ -1,3 +1,4 @@
<!-- (c) https://github.com/MontiCore/monticore -->
# Languages and Language Components that have been developed with MontiCore

The MontiCore language workbench has been under development already
Expand Down
1 change: 1 addition & 0 deletions docs/GettingStarted.md
@@ -1,3 +1,4 @@
<!-- (c) https://github.com/MontiCore/monticore -->
# MontiCore - Getting Started

---------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/Publications.md
@@ -1,6 +1,7 @@
<!-- (c) https://github.com/MontiCore/monticore -->
<!DOCTYPE html>
<!-- file is only redirecting the monticore orginisation pagesto the se publication page https://www.se-rwth.de/topics/MontiCore.php-->
<meta charset="utf-8">
<title>Redirecting to https://www.se-rwth.de/topics/MontiCore.php</title>
<meta http-equiv="refresh" content="0; URL=https://www.se-rwth.de/topics/MontiCore.php">
<link rel="canonical" href="https://www.se-rwth.de/topics/MontiCore.php">
<link rel="canonical" href="https://www.se-rwth.de/topics/MontiCore.php">
1 change: 1 addition & 0 deletions docs/further_docs/Impressum.md
@@ -1,3 +1,4 @@
<!-- (c) https://github.com/MontiCore/monticore -->
# Impressum

According to German law, each website needs to have an "impressum",
Expand Down
3 changes: 2 additions & 1 deletion docs/scripts/preprocessing.sh
@@ -1,4 +1,5 @@
#!/bin/bash
# (c) https://github.com/MontiCore/monticore
# script for all preprocessing steps of the pages job
# is used to have uniform bases for both gitlab and github pages
# is used from '.gitlab-ci.yml'(gitlab) and '.travis.yml'(github)
Expand All @@ -20,4 +21,4 @@ mv monticore-runtime docs/monticore-runtime
mv 00.org docs/00.org
mv *.md docs/
mv *.png docs/
echo "[INFO] Moved *.md files to 'docs' folder"
echo "[INFO] Moved *.md files to 'docs' folder"
1 change: 1 addition & 0 deletions monticore-generator/it/experiments/gradlew 100755 → 100644
@@ -1,4 +1,5 @@
#!/usr/bin/env sh
# (c) https://github.com/MontiCore/monticore

#
# Copyright 2015 the original author or authors.
Expand Down
2 changes: 1 addition & 1 deletion monticore-generator/it/experiments/gradlew.bat
@@ -1,5 +1,5 @@
@rem (c) https://github.com/MontiCore/monticore
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
Expand Down
1 change: 1 addition & 0 deletions monticore-generator/it/experiments/templates/build.gradle
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation project(":automaton_experiments")
Expand Down
@@ -1,4 +1,5 @@
<#-- (c) https://github.com/MontiCore/monticore -->
${tc.signature("modelName","transitionName")}
public void handle${transitionName?cap_first}(${modelName?cap_first} model){
//empty body
}
}
@@ -1,4 +1,5 @@
<#-- (c) https://github.com/MontiCore/monticore -->
${tc.signature("modelName","input","toState")}
public void handle${input?cap_first}(${modelName?cap_first} model){
model.setState(new ${toState}State());
}
}
@@ -1,2 +1,3 @@
<#-- (c) https://github.com/MontiCore/monticore -->
${tc.signature("transitionName","modelName")}
abstract void handle${transitionName?cap_first}(${modelName?cap_first} model);
@@ -1,4 +1,5 @@
<#-- (c) https://github.com/MontiCore/monticore -->
${tc.signature("transitionName")}
public void ${transitionName?uncap_first}(){
currentState.handle${transitionName?cap_first}(this);
}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package automata;

import org.junit.Test;
Expand Down
1 change: 1 addition & 0 deletions monticore-generator/it/gradlew 100755 → 100644
@@ -1,4 +1,5 @@
#!/usr/bin/env sh
# (c) https://github.com/MontiCore/monticore

#
# Copyright 2015 the original author or authors.
Expand Down
2 changes: 1 addition & 1 deletion monticore-generator/it/gradlew.bat
@@ -1,5 +1,5 @@
@rem (c) https://github.com/MontiCore/monticore
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.astprod;

grammar OverwriteWithASTRule extends mc.grammar.types.ItTestTypes {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.composedsymboltablecreator;

grammar A extends mc.common.Basics, mc.grammar.literals.ItTestLiterals {
Expand All @@ -15,4 +16,4 @@ grammar A extends mc.common.Basics, mc.grammar.literals.ItTestLiterals {
G implements Type = Name;


}
}
@@ -1,7 +1,8 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.composedsymboltablecreator;

grammar AB extends mc.feature.composedsymboltablecreator.A, mc.feature.composedsymboltablecreator.B {

start Type;

}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.composedsymboltablecreator;

grammar B extends mc.common.Basics {
Expand All @@ -6,4 +7,4 @@ grammar B extends mc.common.Basics {

scope IfStatement = "if" Name;

}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.inheritedbuilder;

grammar BuilderTest extends mc.common.Basics {
Expand All @@ -6,4 +7,4 @@ grammar BuilderTest extends mc.common.Basics {

Sub extends Sup = "bla" Name;

}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
grammar SubB extends mc.feature.overwriting.SuperA {
E implements I;

Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.overwriting;

component grammar SuperA extends mc.common.Basics {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public class AutomatonDelegatorVisitor extends AutomatonDelegatorVisitorTOP {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public interface AutomatonInheritanceVisitor extends AutomatonInheritanceVisitorTOP {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public abstract class AutomatonParentAwareVisitor extends AutomatonParentAwareVisitorTOP{
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public interface AutomatonScopeVisitor extends AutomatonScopeVisitorTOP {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public interface AutomatonSymbolVisitor extends AutomatonSymbolVisitorTOP {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.examples.automaton.automaton._visitor;

public interface AutomatonVisitor extends AutomatonVisitorTOP {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.symboltable.notopscope._symboltable;

import mc.feature.referencesymbol.reference._symboltable.ReferenceModelLoader;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.symboltable.subnotopscope._symboltable;

import mc.feature.symboltable.notopscope._symboltable.NoTopScopeModelLoader;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.errorcode;

import org.junit.Test;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.inheritedbuilder;

import mc.feature.inheritedbuilder.buildertest._ast.ASTSubBuilder;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package mc.feature.symboltable;

import de.monticore.io.paths.ModelPath;
Expand Down
@@ -1,6 +1,7 @@
/* (c) https://github.com/MontiCore/monticore */
a ScopeShadowed
b ScopeNonExporting
c ScopeOrdered
d SymbolScopeShadowed
e SymbolScopeNonExporting
f SymbolScopeOrdered
f SymbolScopeOrdered
@@ -1,4 +1,4 @@
A {
test B
test C
}
}
@@ -1,4 +1,4 @@
subFoo A {
test B
test C
}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._parser;

public class ParserConstants {
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._parser;

import de.monticore.cd.cd4analysis._ast.ASTCDCompilationUnit;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.language;

import de.monticore.cd.cd4analysis._ast.ASTCDClass;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.language;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.modelloader;

import de.monticore.cd.cd4analysis._ast.ASTCDClass;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.modelloader;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.ASTCDAttribute;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.ASTCDClass;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.ASTCDAttribute;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.scope;

import com.google.common.collect.Lists;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.serialization;

import com.google.common.collect.Lists;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.serialization;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.serialization;

import com.google.common.collect.Lists;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.serialization;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down Expand Up @@ -377,4 +378,4 @@ protected boolean isPrimitive(String type) {
return false;
}
}
}
}
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbTabMill;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symbol.symbolloadermutator;

import de.monticore.cd.cd4analysis._ast.ASTCDAttribute;
Expand Down
@@ -1,3 +1,4 @@
/* (c) https://github.com/MontiCore/monticore */
package de.monticore.codegen.cd2java._symboltable.symboltablecreator;

import de.monticore.cd.cd4analysis._ast.*;
Expand Down

0 comments on commit 04764b9

Please sign in to comment.