github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/go/ssa/interp/external_windows.go (about) 1 // Copyright 2013 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package interp 6 7 import "syscall" 8 9 func ext۰os۰Pipe(fr *frame, args []value) value { 10 panic("os.Pipe not yet implemented") 11 } 12 func ext۰syscall۰Close(fr *frame, args []value) value { 13 panic("syscall.Close not yet implemented") 14 } 15 func ext۰syscall۰Fstat(fr *frame, args []value) value { 16 panic("syscall.Fstat not yet implemented") 17 } 18 func ext۰syscall۰Kill(fr *frame, args []value) value { 19 panic("syscall.Kill not yet implemented") 20 } 21 func ext۰syscall۰Lstat(fr *frame, args []value) value { 22 panic("syscall.Lstat not yet implemented") 23 } 24 func ext۰syscall۰Open(fr *frame, args []value) value { 25 panic("syscall.Open not yet implemented") 26 } 27 func ext۰syscall۰ParseDirent(fr *frame, args []value) value { 28 panic("syscall.ParseDirent not yet implemented") 29 } 30 func ext۰syscall۰Read(fr *frame, args []value) value { 31 panic("syscall.Read not yet implemented") 32 } 33 func ext۰syscall۰ReadDirent(fr *frame, args []value) value { 34 panic("syscall.ReadDirent not yet implemented") 35 } 36 func ext۰syscall۰Stat(fr *frame, args []value) value { 37 panic("syscall.Stat not yet implemented") 38 } 39 func ext۰syscall۰Write(fr *frame, args []value) value { 40 panic("syscall.Write not yet implemented") 41 } 42 func ext۰syscall۰RawSyscall(fr *frame, args []value) value { 43 return tuple{uintptr(0), uintptr(0), uintptr(syscall.ENOSYS)} 44 } 45 func syswrite(fd int, b []byte) (int, error) { 46 panic("syswrite not yet implemented") 47 }