Commit 21a3fdd6 authored by EmreTr1's avatar EmreTr1
Browse files

rename package

parent 59e4cf31
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
# MoLang
MoLang parse & evaluator
MoLang parse & evaluator
......@@ -7,7 +7,7 @@ java {
targetCompatibility = JavaVersion.VERSION_1_8
}
group 'com.phoshp'
group 'com.bedrockk'
version '1.0-SNAPSHOT'
repositories {
......
package com.phoshp.molang;
import com.phoshp.molang.parser.MoLangParser;
package com.bedrockk.molang;
public class MoLang {
......
package com.phoshp.molang.parser;
package com.bedrockk.molang.parser;
public interface Expression {
}
package com.phoshp.molang.parser;
package com.bedrockk.molang.parser;
import com.phoshp.molang.parser.tokenizer.Token;
import com.bedrockk.molang.parser.tokenizer.Token;
public interface InfixParselet {
......
package com.phoshp.molang.parser;
package com.bedrockk.molang.parser;
import com.phoshp.molang.parser.expression.*;
import com.phoshp.molang.parser.parselet.*;
import com.phoshp.molang.parser.tokenizer.Token;
import com.phoshp.molang.parser.tokenizer.TokenIterator;
import com.phoshp.molang.parser.tokenizer.TokenType;
import com.bedrockk.molang.parser.parselet.*;
import com.bedrockk.molang.parser.tokenizer.Token;
import com.bedrockk.molang.parser.tokenizer.TokenIterator;
import com.bedrockk.molang.parser.tokenizer.TokenType;
import lombok.extern.log4j.Log4j2;
import java.util.ArrayList;
......
package com.phoshp.molang.parser;
package com.bedrockk.molang.parser;
import com.phoshp.molang.parser.tokenizer.Token;
import com.bedrockk.molang.parser.tokenizer.Token;
public interface Parselet {
......
package com.phoshp.molang.parser.expression;
package com.bedrockk.molang.parser.expression;
import com.phoshp.molang.parser.Expression;
import com.bedrockk.molang.parser.Expression;
import lombok.Value;
@Value
......
package com.phoshp.molang.parser.expression;
package com.bedrockk.molang.parser.expression;
import com.phoshp.molang.parser.Expression;
import com.bedrockk.molang.parser.Expression;
import lombok.Value;
@Value
......
package com.phoshp.molang.parser.expression;
package com.bedrockk.molang.parser.expression;
import com.phoshp.molang.parser.Expression;
import com.bedrockk.molang.parser.Expression;
import lombok.*;
@Getter
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment