1. upgrade bukkit chat 2. fix config update error Signed-off-by: MiaoWoo <admin@yumc.pw>
27 lines
323 B
TypeScript
27 lines
323 B
TypeScript
import { Expression } from '../expression'
|
|
|
|
export class BreakExpression extends Expression {
|
|
type = 'BreakExpression'
|
|
isBreak = true
|
|
|
|
constructor() {
|
|
super()
|
|
}
|
|
|
|
get allExpressions() {
|
|
return []
|
|
}
|
|
setExpressionAt() {}
|
|
|
|
isStatic() {
|
|
return false
|
|
}
|
|
|
|
eval() {
|
|
return 0
|
|
}
|
|
isString() {
|
|
return 'break'
|
|
}
|
|
}
|