X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/cmd/compile/internal/syntax
opt
/
golang
/
1.19.4
/
src
/
cmd
/
compile
/
internal
/
syntax
/
📁
..
📄
branches.go
(9.8 KB)
📄
dumper.go
(4.51 KB)
📄
dumper_test.go
(424 B)
📄
error_test.go
(4.78 KB)
📄
nodes.go
(8.74 KB)
📄
nodes_test.go
(8.69 KB)
📄
operator_string.go
(1.02 KB)
📄
parser.go
(61.51 KB)
📄
parser_test.go
(11.32 KB)
📄
pos.go
(5.21 KB)
📄
positions.go
(6.5 KB)
📄
printer.go
(21.53 KB)
📄
printer_test.go
(7.46 KB)
📄
scanner.go
(17.06 KB)
📄
scanner_test.go
(21.98 KB)
📄
source.go
(5.71 KB)
📄
syntax.go
(3.09 KB)
📁
testdata
📄
testing.go
(2.2 KB)
📄
testing_test.go
(1.27 KB)
📄
token_string.go
(1.74 KB)
📄
tokens.go
(2.61 KB)
📄
walk.go
(6.16 KB)
Editing: dumper_test.go
// 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 syntax import ( "testing" ) func TestDump(t *testing.T) { if testing.Short() { t.Skip("skipping test in short mode") } ast, _ := ParseFile(*src_, func(err error) { t.Error(err) }, nil, CheckBranches) if ast != nil { Fdump(testOut(), ast) } }
Upload File
Create Folder