diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-06 11:27:36 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-06 17:33:06 -0400 |
commit | 9778eceaf5922b1e051859a68b2e02a2f1b1ee8b (patch) | |
tree | 680eac7b09e0a9fe6a6a76fb8462fdc4b8ac101d /js/util.ts | |
parent | d9cb093989263b7e57a43d9ef18d88da7a77a784 (diff) |
Use C++ to do flatbuffer parsing.
- Port protobuf messages to flatbuffers.
- Demo linking to rust from C++ executable.
- Start using the prototype TS libraries.
Diffstat (limited to 'js/util.ts')
-rw-r--r-- | js/util.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/util.ts b/js/util.ts index 70cb79a55..9f87ab63d 100644 --- a/js/util.ts +++ b/js/util.ts @@ -1,6 +1,9 @@ // Copyright 2018 Ryan Dahl <ry@tinyclouds.org> // All rights reserved. MIT License. -import { debug } from "./main"; + +//import { debug } from "./main"; +const debug = true; + import { TypedArray } from "./types"; // Internal logging for deno. Use the "debug" variable above to control |