UNPKG

@adamsy/bhai-lang

Version:

<h1 align="center">Bhai Lang</h1> <p align="center"> <a href="https://lgtm.com/projects/g/DulLabs/bhai-lang/alerts/"><img alt="Total alerts" src="https://img.shields.io/lgtm/alerts/g/DulLabs/bhai-lang.svg?logo=lgtm&logoWidth=18"/></a> <a href="https://lgt

16 lines (12 loc) 459 B
import Visitor from "."; import RuntimeException from "../../exceptions/runtimeException"; import InterpreterModule from "../../module/interpreterModule"; export default class ContinueStatement implements Visitor { visitNode() { if (InterpreterModule.getCurrentScope().isLoop()) { InterpreterModule.getCurrentScope().setContinueStatement(true); } else { throw new RuntimeException(`Kha "kat lo bhai"?? Loop kidhar hai?`); } } }