mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
3eee686932
Signed-off-by: deadprogram <ron@hybridgroup.com>
23 lines
711 B
Go
23 lines
711 B
Go
//go:build baremetal || (tinygo.wasm && !wasip1 && !wasip2) || nintendoswitch
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package os
|
|
|
|
// Stat is a stub, not yet implemented
|
|
func (f *File) Stat() (FileInfo, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
// statNolog stats a file with no test logging.
|
|
func statNolog(name string) (FileInfo, error) {
|
|
return nil, &PathError{Op: "stat", Path: name, Err: ErrNotImplemented}
|
|
}
|
|
|
|
// lstatNolog lstats a file with no test logging.
|
|
func lstatNolog(name string) (FileInfo, error) {
|
|
return nil, &PathError{Op: "lstat", Path: name, Err: ErrNotImplemented}
|
|
}
|