Skip to content

Commit b238633

Browse files
committed
Move stuff about
1 parent ec77c8b commit b238633

51 files changed

Lines changed: 299 additions & 220 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/workspace.xml

Lines changed: 67 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/ko/carbonel/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import ko.carbonel.compiler.config.ArgumentName;
44
import ko.carbonel.compiler.config.Config;
5-
import ko.carbonel.compiler.intermediate.tinyRust.AttributeEntry;
5+
import ko.carbonel.compiler.intermediate.tinyRust.ts.AttributeEntry;
66
import ko.carbonel.compiler.runner.TermFont;
77
import ko.carbonel.compiler.stream.lexer.LexerToken;
88
import ko.carbonel.syntax.grammar.algorithm.Factorizer;

src/main/java/ko/carbonel/compiler/exception/semantic/FieldRedeclaredError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package ko.carbonel.compiler.exception.semantic;
22

33

4-
import ko.carbonel.compiler.intermediate.tinyRust.VariableEntry;
4+
import ko.carbonel.compiler.intermediate.tinyRust.ts.VariableEntry;
55
import ko.carbonel.compiler.stream.reader.FileLocation;
66

77
import java.util.List;

src/main/java/ko/carbonel/compiler/exception/semantic/MethodOverrideError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.MethodEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.MethodEntry;
44
import ko.carbonel.compiler.stream.reader.FileLocation;
55

66
public class MethodOverrideError extends SemanticError {

src/main/java/ko/carbonel/compiler/exception/semantic/ParameterCountMismatchError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.MethodEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.MethodEntry;
44

55
public class ParameterCountMismatchError extends MethodOverrideError {
66
public ParameterCountMismatchError(MethodEntry inherited, MethodEntry local) {

src/main/java/ko/carbonel/compiler/exception/semantic/ParameterTypeMismatchError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.MethodEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.MethodEntry;
44

55
public class ParameterTypeMismatchError extends MethodOverrideError {
66
public ParameterTypeMismatchError(MethodEntry inherited, MethodEntry local, int i) {

src/main/java/ko/carbonel/compiler/exception/semantic/ReturnTypeMismatchError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.MethodEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.MethodEntry;
44

55
public class ReturnTypeMismatchError extends MethodOverrideError {
66
public ReturnTypeMismatchError(MethodEntry inherited, MethodEntry local) {

src/main/java/ko/carbonel/compiler/exception/semantic/StaticOverrideError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.MethodEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.MethodEntry;
44

55
public class StaticOverrideError extends MethodOverrideError {
66
public StaticOverrideError(MethodEntry inherited, MethodEntry local) {

src/main/java/ko/carbonel/compiler/exception/semantic/SuperclassNotExtendableError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ko.carbonel.compiler.exception.semantic;
22

3-
import ko.carbonel.compiler.intermediate.tinyRust.TypeEntry;
3+
import ko.carbonel.compiler.intermediate.tinyRust.ts.TypeEntry;
44

55
public class SuperclassNotExtendableError extends SemanticError {
66
public SuperclassNotExtendableError(TypeEntry superClass) {

src/main/java/ko/carbonel/compiler/generated/AttrTinyRustParser.java

Lines changed: 105 additions & 104 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)