From 03d44f64e65d075c13264c7de57212a51cf50fb7 Mon Sep 17 00:00:00 2001 From: dcode Date: Sat, 24 Sep 2022 21:15:40 +0200 Subject: [PATCH] Remove leftover process streams --- std/assembly/process.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/std/assembly/process.ts b/std/assembly/process.ts index 61cba8d06a..663d85dbc3 100644 --- a/std/assembly/process.ts +++ b/std/assembly/process.ts @@ -28,13 +28,6 @@ export namespace process { process_binding.exit(code); } - // @ts-ignore: decorator - @lazy export const stdin = changetype(0); - // @ts-ignore: decorator - @lazy export const stdout = changetype(1); - // @ts-ignore: decorator - @lazy export const stderr = changetype(2); - export function time(): i64 { return Date_binding.now(); }