diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-24 05:13:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-24 05:13:50 -0700 |
| commit | 5b2baa5c990fbeae747e952c5dcd7a5369e950b1 (patch) | |
| tree | 6fb3766978ae5a05f02443310c7121602841a300 /cli/msg.fbs | |
| parent | bc467b265fbe06ace24f5d9536bd8eb36ae4a601 (diff) | |
Port rest of os ops to JSON (#2802)
Diffstat (limited to 'cli/msg.fbs')
| -rw-r--r-- | cli/msg.fbs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs index 3a40b80f5..6744a0754 100644 --- a/cli/msg.fbs +++ b/cli/msg.fbs @@ -62,16 +62,11 @@ union Any { RunStatus, RunStatusRes, Seek, - SetEnv, Shutdown, - Start, - StartRes, Stat, StatRes, Symlink, Truncate, - HomeDir, - HomeDirRes, WorkerGetMessage, WorkerGetMessageRes, WorkerPostMessage, @@ -167,25 +162,6 @@ table Base { inner: Any; } -table Start { - unused: int8; -} - -table StartRes { - cwd: string; - pid: uint32; - argv: [string]; - main_module: string; // Absolute URL. - debug_flag: bool; - deps_flag: bool; - types_flag: bool; - version_flag: bool; - deno_version: string; - v8_version: string; - no_color: bool; - xeval_delim: string; -} - table FormatError { error: string; } @@ -278,11 +254,6 @@ table GlobalTimerRes { } table GlobalTimerStop { } -table SetEnv { - key: string; - value: string; -} - table KeyValue { key: string; value: string; @@ -445,12 +416,6 @@ table Truncate { len: uint; } -table HomeDir {} - -table HomeDirRes { - path: string; -} - table Open { filename: string; perm: uint; |
