From 9626e0e14e6c360969189cbf06320ad2fbbda3e7 Mon Sep 17 00:00:00 2001 From: JanUlrich Date: Tue, 4 Feb 2014 17:42:14 +0100 Subject: [PATCH] gitignore added. CVS-Ordner ignorieren sowie class und package dateien --- .gitignore | 10 ++++++++++ bin/mycompiler/test/lambda/BasicAssumptions.jav | 0 bin/mycompiler/test/lambda/ConstructorTestFile1.jav | 0 bin/mycompiler/test/lambda/ConstructorTestFile2.jav | 0 bin/mycompiler/test/lambda/GenericVarTest.jav | 0 bin/mycompiler/test/lambda/LambdaTest1.jav | 0 bin/mycompiler/test/lambda/OverloadingTest.jav | 0 bin/mycompiler/test/lambda/TestAssign.jav | 0 bin/mycompiler/test/lambda/TestFunN.jav | 0 bin/mycompiler/test/lambda/TestIfStmt.jav | 0 bin/mycompiler/test/lambda/TestLambda.jav | 0 bin/mycompiler/test/lambda/TestMethodCall.jav | 0 bin/mycompiler/test/lambda/TestWhile.jav | 0 bin/mycompiler/test/lambda/ThisTest.jav | 0 bin/mycompiler/test/lambda/parseMultipleFilesFile1.jav | 0 bin/mycompiler/test/lambda/parseMultipleFilesFile2.jav | 0 examples/lambda/general.jav | 0 examples/lambda/test1.jav | 0 examples/lambda/test2.jav | 0 src/mycompiler/myclass/FieldInitialization.java | 0 src/mycompiler/mystatement/LambdaExpression.java | 0 src/mycompiler/mytest/LambdaTest.java | 0 src/mycompiler/mytype/GenericTypeVar.java | 2 +- src/mycompiler/mytype/TypePlaceholder.java | 2 +- src/typinferenz/ConstraintsSet.java | 0 src/typinferenz/FreshTypeVariable.java | 0 src/typinferenz/FunN.java | 0 src/typinferenz/JavaCodeResult.java | 0 src/typinferenz/KarthesischesProdukt.java | 0 src/typinferenz/OderConstraint.java | 0 src/typinferenz/Overloading.java | 0 src/typinferenz/ResultSet.java | 0 src/typinferenz/SingleConstraint.java | 0 src/typinferenz/Typable.java | 0 src/typinferenz/TypeAssumptions.java | 0 src/typinferenz/TypinferenzException.java | 0 src/typinferenz/UndConstraint.java | 0 src/userinterface/ConsoleInterface.java | 0 test/mycompiler/test/LambdaInterferenzTest.java | 0 .../mycompiler/test/lambda/AllgemeinerLambdaTest1.java | 0 test/mycompiler/test/lambda/BasicAssumptions.jav | 0 test/mycompiler/test/lambda/BasicAssumptionsTest.java | 0 test/mycompiler/test/lambda/ConstructorTest.java | 0 test/mycompiler/test/lambda/ConstructorTestFile1.jav | 0 test/mycompiler/test/lambda/ConstructorTestFile2.jav | 0 test/mycompiler/test/lambda/GenericVarTest.jav | 0 test/mycompiler/test/lambda/GenericVarTest.java | 0 test/mycompiler/test/lambda/LambdaTest1.jav | 0 test/mycompiler/test/lambda/OverloadingTest.jav | 0 test/mycompiler/test/lambda/OverloadingTest.java | 0 .../mycompiler/test/lambda/ParseMultipleFilesTest.java | 0 test/mycompiler/test/lambda/TestAssign.jav | 0 test/mycompiler/test/lambda/TestAssign.java | 0 test/mycompiler/test/lambda/TestFunN.jav | 0 test/mycompiler/test/lambda/TestFunN.java | 0 test/mycompiler/test/lambda/TestIfStmt.jav | 0 test/mycompiler/test/lambda/TestIfStmt.java | 0 test/mycompiler/test/lambda/TestLambda.jav | 0 test/mycompiler/test/lambda/TestLambda.java | 0 test/mycompiler/test/lambda/TestMethodCall.jav | 0 test/mycompiler/test/lambda/TestMethodCall.java | 0 test/mycompiler/test/lambda/TestThis.java | 0 test/mycompiler/test/lambda/TestWhile.jav | 0 test/mycompiler/test/lambda/TestWhile.java | 0 test/mycompiler/test/lambda/ThisTest.jav | 0 .../mycompiler/test/lambda/parseMultipleFilesFile1.jav | 0 .../mycompiler/test/lambda/parseMultipleFilesFile2.jav | 0 67 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .gitignore mode change 100644 => 100755 bin/mycompiler/test/lambda/BasicAssumptions.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/ConstructorTestFile1.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/ConstructorTestFile2.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/GenericVarTest.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/LambdaTest1.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/OverloadingTest.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestAssign.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestFunN.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestIfStmt.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestLambda.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestMethodCall.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/TestWhile.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/ThisTest.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/parseMultipleFilesFile1.jav mode change 100644 => 100755 bin/mycompiler/test/lambda/parseMultipleFilesFile2.jav mode change 100644 => 100755 examples/lambda/general.jav mode change 100644 => 100755 examples/lambda/test1.jav mode change 100644 => 100755 examples/lambda/test2.jav mode change 100644 => 100755 src/mycompiler/myclass/FieldInitialization.java mode change 100644 => 100755 src/mycompiler/mystatement/LambdaExpression.java mode change 100644 => 100755 src/mycompiler/mytest/LambdaTest.java mode change 100644 => 100755 src/typinferenz/ConstraintsSet.java mode change 100644 => 100755 src/typinferenz/FreshTypeVariable.java mode change 100644 => 100755 src/typinferenz/FunN.java mode change 100644 => 100755 src/typinferenz/JavaCodeResult.java mode change 100644 => 100755 src/typinferenz/KarthesischesProdukt.java mode change 100644 => 100755 src/typinferenz/OderConstraint.java mode change 100644 => 100755 src/typinferenz/Overloading.java mode change 100644 => 100755 src/typinferenz/ResultSet.java mode change 100644 => 100755 src/typinferenz/SingleConstraint.java mode change 100644 => 100755 src/typinferenz/Typable.java mode change 100644 => 100755 src/typinferenz/TypeAssumptions.java mode change 100644 => 100755 src/typinferenz/TypinferenzException.java mode change 100644 => 100755 src/typinferenz/UndConstraint.java mode change 100644 => 100755 src/userinterface/ConsoleInterface.java mode change 100644 => 100755 test/mycompiler/test/LambdaInterferenzTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/AllgemeinerLambdaTest1.java mode change 100644 => 100755 test/mycompiler/test/lambda/BasicAssumptions.jav mode change 100644 => 100755 test/mycompiler/test/lambda/BasicAssumptionsTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/ConstructorTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/ConstructorTestFile1.jav mode change 100644 => 100755 test/mycompiler/test/lambda/ConstructorTestFile2.jav mode change 100644 => 100755 test/mycompiler/test/lambda/GenericVarTest.jav mode change 100644 => 100755 test/mycompiler/test/lambda/GenericVarTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/LambdaTest1.jav mode change 100644 => 100755 test/mycompiler/test/lambda/OverloadingTest.jav mode change 100644 => 100755 test/mycompiler/test/lambda/OverloadingTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/ParseMultipleFilesTest.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestAssign.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestAssign.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestFunN.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestFunN.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestIfStmt.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestIfStmt.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestLambda.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestLambda.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestMethodCall.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestMethodCall.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestThis.java mode change 100644 => 100755 test/mycompiler/test/lambda/TestWhile.jav mode change 100644 => 100755 test/mycompiler/test/lambda/TestWhile.java mode change 100644 => 100755 test/mycompiler/test/lambda/ThisTest.jav mode change 100644 => 100755 test/mycompiler/test/lambda/parseMultipleFilesFile1.jav mode change 100644 => 100755 test/mycompiler/test/lambda/parseMultipleFilesFile2.jav diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e73b9b4e --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +CVS +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear diff --git a/bin/mycompiler/test/lambda/BasicAssumptions.jav b/bin/mycompiler/test/lambda/BasicAssumptions.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/ConstructorTestFile1.jav b/bin/mycompiler/test/lambda/ConstructorTestFile1.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/ConstructorTestFile2.jav b/bin/mycompiler/test/lambda/ConstructorTestFile2.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/GenericVarTest.jav b/bin/mycompiler/test/lambda/GenericVarTest.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/LambdaTest1.jav b/bin/mycompiler/test/lambda/LambdaTest1.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/OverloadingTest.jav b/bin/mycompiler/test/lambda/OverloadingTest.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestAssign.jav b/bin/mycompiler/test/lambda/TestAssign.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestFunN.jav b/bin/mycompiler/test/lambda/TestFunN.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestIfStmt.jav b/bin/mycompiler/test/lambda/TestIfStmt.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestLambda.jav b/bin/mycompiler/test/lambda/TestLambda.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestMethodCall.jav b/bin/mycompiler/test/lambda/TestMethodCall.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/TestWhile.jav b/bin/mycompiler/test/lambda/TestWhile.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/ThisTest.jav b/bin/mycompiler/test/lambda/ThisTest.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/parseMultipleFilesFile1.jav b/bin/mycompiler/test/lambda/parseMultipleFilesFile1.jav old mode 100644 new mode 100755 diff --git a/bin/mycompiler/test/lambda/parseMultipleFilesFile2.jav b/bin/mycompiler/test/lambda/parseMultipleFilesFile2.jav old mode 100644 new mode 100755 diff --git a/examples/lambda/general.jav b/examples/lambda/general.jav old mode 100644 new mode 100755 diff --git a/examples/lambda/test1.jav b/examples/lambda/test1.jav old mode 100644 new mode 100755 diff --git a/examples/lambda/test2.jav b/examples/lambda/test2.jav old mode 100644 new mode 100755 diff --git a/src/mycompiler/myclass/FieldInitialization.java b/src/mycompiler/myclass/FieldInitialization.java old mode 100644 new mode 100755 diff --git a/src/mycompiler/mystatement/LambdaExpression.java b/src/mycompiler/mystatement/LambdaExpression.java old mode 100644 new mode 100755 diff --git a/src/mycompiler/mytest/LambdaTest.java b/src/mycompiler/mytest/LambdaTest.java old mode 100644 new mode 100755 diff --git a/src/mycompiler/mytype/GenericTypeVar.java b/src/mycompiler/mytype/GenericTypeVar.java index fef54845..b6271992 100755 --- a/src/mycompiler/mytype/GenericTypeVar.java +++ b/src/mycompiler/mytype/GenericTypeVar.java @@ -14,7 +14,7 @@ import typinferenz.ResultSet; /** * * @author J�rg B�uerle - * @version $Date: 2013/09/22 20:12:53 $ + * @version $Date: 2013/10/21 12:45:23 $ */ // ino.end // ino.class.GenericTypeVar.26505.declaration diff --git a/src/mycompiler/mytype/TypePlaceholder.java b/src/mycompiler/mytype/TypePlaceholder.java index c996f9aa..363eb915 100755 --- a/src/mycompiler/mytype/TypePlaceholder.java +++ b/src/mycompiler/mytype/TypePlaceholder.java @@ -22,7 +22,7 @@ import mycompiler.mytypereconstruction.replacementlistener.ITypeReplacementListe * und * ist in einer zentralen Registry, d.h. einer Hashtable abgelegt. * @author J�rg B�uerle - * @version $Date: 2013/06/19 12:45:37 $ + * @version $Date: 2013/10/21 12:45:22 $ */ // ino.end // ino.class.TypePlaceholder.26780.declaration diff --git a/src/typinferenz/ConstraintsSet.java b/src/typinferenz/ConstraintsSet.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/FreshTypeVariable.java b/src/typinferenz/FreshTypeVariable.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/FunN.java b/src/typinferenz/FunN.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/JavaCodeResult.java b/src/typinferenz/JavaCodeResult.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/KarthesischesProdukt.java b/src/typinferenz/KarthesischesProdukt.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/OderConstraint.java b/src/typinferenz/OderConstraint.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/Overloading.java b/src/typinferenz/Overloading.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/ResultSet.java b/src/typinferenz/ResultSet.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/SingleConstraint.java b/src/typinferenz/SingleConstraint.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/Typable.java b/src/typinferenz/Typable.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/TypeAssumptions.java b/src/typinferenz/TypeAssumptions.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/TypinferenzException.java b/src/typinferenz/TypinferenzException.java old mode 100644 new mode 100755 diff --git a/src/typinferenz/UndConstraint.java b/src/typinferenz/UndConstraint.java old mode 100644 new mode 100755 diff --git a/src/userinterface/ConsoleInterface.java b/src/userinterface/ConsoleInterface.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/LambdaInterferenzTest.java b/test/mycompiler/test/LambdaInterferenzTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/AllgemeinerLambdaTest1.java b/test/mycompiler/test/lambda/AllgemeinerLambdaTest1.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/BasicAssumptions.jav b/test/mycompiler/test/lambda/BasicAssumptions.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/BasicAssumptionsTest.java b/test/mycompiler/test/lambda/BasicAssumptionsTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/ConstructorTest.java b/test/mycompiler/test/lambda/ConstructorTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/ConstructorTestFile1.jav b/test/mycompiler/test/lambda/ConstructorTestFile1.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/ConstructorTestFile2.jav b/test/mycompiler/test/lambda/ConstructorTestFile2.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/GenericVarTest.jav b/test/mycompiler/test/lambda/GenericVarTest.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/GenericVarTest.java b/test/mycompiler/test/lambda/GenericVarTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/LambdaTest1.jav b/test/mycompiler/test/lambda/LambdaTest1.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/OverloadingTest.jav b/test/mycompiler/test/lambda/OverloadingTest.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/OverloadingTest.java b/test/mycompiler/test/lambda/OverloadingTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/ParseMultipleFilesTest.java b/test/mycompiler/test/lambda/ParseMultipleFilesTest.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestAssign.jav b/test/mycompiler/test/lambda/TestAssign.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestAssign.java b/test/mycompiler/test/lambda/TestAssign.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestFunN.jav b/test/mycompiler/test/lambda/TestFunN.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestFunN.java b/test/mycompiler/test/lambda/TestFunN.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestIfStmt.jav b/test/mycompiler/test/lambda/TestIfStmt.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestIfStmt.java b/test/mycompiler/test/lambda/TestIfStmt.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestLambda.jav b/test/mycompiler/test/lambda/TestLambda.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestLambda.java b/test/mycompiler/test/lambda/TestLambda.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestMethodCall.jav b/test/mycompiler/test/lambda/TestMethodCall.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestMethodCall.java b/test/mycompiler/test/lambda/TestMethodCall.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestThis.java b/test/mycompiler/test/lambda/TestThis.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestWhile.jav b/test/mycompiler/test/lambda/TestWhile.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/TestWhile.java b/test/mycompiler/test/lambda/TestWhile.java old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/ThisTest.jav b/test/mycompiler/test/lambda/ThisTest.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/parseMultipleFilesFile1.jav b/test/mycompiler/test/lambda/parseMultipleFilesFile1.jav old mode 100644 new mode 100755 diff --git a/test/mycompiler/test/lambda/parseMultipleFilesFile2.jav b/test/mycompiler/test/lambda/parseMultipleFilesFile2.jav old mode 100644 new mode 100755