- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for sourceLine (0.1 sec)
-
src/cmd/cgo/ast.go
// details for all the errors. for _, e := range list { fmt.Fprintln(os.Stderr, e) } os.Exit(2) } fatalf("parsing %s: %s", name, err) } return ast1 } func sourceLine(n ast.Node) int { return fset.Position(n.Pos()).Line } // ParseGo populates f with information learned from the Go source code // which was read from the named file. It gathers the C preamble
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
SmbFile sourceFile = new SmbFile(baseUrl + "shared/" + sourceFileName, createContext); // Create source file with content String content = "Content for rename test"; try (OutputStream out = sourceFile.openOutputStream(false)) { out.write(content.getBytes("UTF-8")); } sourceFile.close(); // Wait for file system to sync
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
doc/go_spec.html
declarations that declare packages whose contents it wishes to use, followed by a possibly empty set of declarations of functions, types, variables, and constants. </p> <pre class="ebnf"> SourceFile = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } . </pre> <h3 id="Package_clause">Package clause</h3> <p> A package clause begins each source file and defines the package
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0)