mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 22:31:52 +00:00
Remove statement class
This commit is contained in:
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
package com.dfsek.terra.addons.terrascript.parser.lang;
|
package com.dfsek.terra.addons.terrascript.parser.lang;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Arguments passed to {@link Statement}s by the implementation
|
* Arguments passed to {@link Expression}s by the implementation
|
||||||
*/
|
*/
|
||||||
public interface ImplementationArguments {
|
public interface ImplementationArguments {
|
||||||
}
|
}
|
||||||
|
|||||||
-15
@@ -1,15 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020-2021 Polyhedral Development
|
|
||||||
*
|
|
||||||
* The Terra Core Addons are licensed under the terms of the MIT License. For more details,
|
|
||||||
* reference the LICENSE file in this module's root directory.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.dfsek.terra.addons.terrascript.parser.lang;
|
|
||||||
|
|
||||||
public interface Statement extends Expression<Void> {
|
|
||||||
@Override
|
|
||||||
default ReturnType returnType() {
|
|
||||||
return ReturnType.VOID;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-1
@@ -9,7 +9,6 @@ package com.dfsek.terra.addons.terrascript.parser.lang.keywords.looplike;
|
|||||||
|
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Block;
|
import com.dfsek.terra.addons.terrascript.parser.lang.Block;
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.ImplementationArguments;
|
import com.dfsek.terra.addons.terrascript.parser.lang.ImplementationArguments;
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Statement;
|
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Keyword;
|
import com.dfsek.terra.addons.terrascript.parser.lang.Keyword;
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Expression;
|
import com.dfsek.terra.addons.terrascript.parser.lang.Expression;
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Scope;
|
import com.dfsek.terra.addons.terrascript.parser.lang.Scope;
|
||||||
|
|||||||
-1
@@ -7,7 +7,6 @@
|
|||||||
|
|
||||||
package com.dfsek.terra.addons.terrascript.parser.lang.variables.assign;
|
package com.dfsek.terra.addons.terrascript.parser.lang.variables.assign;
|
||||||
|
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Statement;
|
|
||||||
import com.dfsek.terra.addons.terrascript.parser.lang.Expression;
|
import com.dfsek.terra.addons.terrascript.parser.lang.Expression;
|
||||||
import com.dfsek.terra.addons.terrascript.tokenizer.SourcePosition;
|
import com.dfsek.terra.addons.terrascript.tokenizer.SourcePosition;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user