Skip to content

Commit

Permalink
export position
Browse files Browse the repository at this point in the history
+1.0.9 version bump
  • Loading branch information
michal-kapala committed Mar 27, 2024
1 parent 75f9471 commit da4bfbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jitterbit-script",
"version": "1.0.8",
"version": "1.0.9",
"description": "Static typechecker and interpreter for Jitterbit Script",
"main": "build/index.js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import Api from "./api";
import { Func } from "./api/types";
import Parser from "./frontend/parser";
import { Position } from "./frontend/types";
import Diagnostic from "./diagnostic";
import Scope from "./runtime/scope";
import evaluate from "./runtime/interpreter";
import { CodeAnalysis } from "./typechecker/ast";
import Typechecker from "./typechecker/typechecker";
import {
CodeAnalysis,
TypedArrayLiteral,
TypedAssignment,
TypedBinaryExpr,
Expand All @@ -33,6 +34,7 @@ export {
Typechecker,
Diagnostic,
CodeAnalysis,
Position,
TypedArrayLiteral,
TypedAssignment,
TypedBinaryExpr,
Expand Down

0 comments on commit da4bfbe

Please sign in to comment.