Forked from
Mikhail.Barash / INF222 - V24 - Obligatory 2 - Skeleton
7 commits behind the upstream repository.
-
Rolf Glomsrud authoredRolf Glomsrud authored
abstractVisitor.ts 182 B
// YOU ARE NOT SUPPOSED TO MODIFY THIS FILE.
import { AstNode } from "./types";
export abstract class AbstractVisitor {
abstract visit(node: AstNode): void;
}