UNPKG

calcium-lang

Version:
12 lines 309 B
import Conditional from "./conditional"; /** * else control flow */ export default class Else extends Conditional { isSatisfied(env) { // when an else command becomes the current line, // the runtime always enters this block. return true; } } //# sourceMappingURL=else.js.map