mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 19:13:54 +00:00
Move runtime to toplevel
This commit is contained in:
parent
2a9376e018
commit
3105ab1372
11 changed files with 7 additions and 7 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import runtime from "../maki-interpreter/runtime";
|
||||
import runtime from "../runtime";
|
||||
|
||||
function quote(str) {
|
||||
return `"${str}"`;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React from "react";
|
||||
import run from "../maki-interpreter/interpreter";
|
||||
import System from "../maki-interpreter/runtime/System";
|
||||
import runtime from "../maki-interpreter/runtime";
|
||||
import System from "../runtime/System";
|
||||
import runtime from "../runtime";
|
||||
import Variable from "./Variable";
|
||||
import Value from "./Value";
|
||||
import Command from "./Command";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const System = require("./runtime/System");
|
||||
const runtime = require("./runtime");
|
||||
const System = require("../runtime/System");
|
||||
const runtime = require("../runtime");
|
||||
const interpret = require("./interpreter");
|
||||
|
||||
const VERSIONS = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
const Variable = require("./variable");
|
||||
const runtime = require("./runtime");
|
||||
const runtime = require("../runtime");
|
||||
|
||||
// Debug utility to pretty print a value/variable
|
||||
function printValue(value) {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const Emitter = require("./Emitter");
|
||||
const Emitter = require("../Emitter");
|
||||
|
||||
class Variable {
|
||||
constructor({ type, typeName }) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue