From 81fdf10f8cfe8970c5f345d5a9a3c3fc66949457 Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Sat, 19 Jan 2019 20:38:01 -0800 Subject: [PATCH] remove 'mode_irregular' from 'os' module --- compiler/stdlib/os.go | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/stdlib/os.go b/compiler/stdlib/os.go index d2e75de..826d582 100644 --- a/compiler/stdlib/os.go +++ b/compiler/stdlib/os.go @@ -27,7 +27,6 @@ var osModule = map[string]objects.Object{ "mode_setgui": &objects.Int{Value: int64(os.ModeSetgid)}, "mode_char_device": &objects.Int{Value: int64(os.ModeCharDevice)}, "mode_sticky": &objects.Int{Value: int64(os.ModeSticky)}, - "mode_irregular": &objects.Int{Value: int64(os.ModeIrregular)}, "mode_type": &objects.Int{Value: int64(os.ModeType)}, "mode_perm": &objects.Int{Value: int64(os.ModePerm)}, "path_separator": &objects.Char{Value: os.PathSeparator},