mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Merge pull request #4203 from karl-zylinski/file-tags-without-comments
Make tags use #+ syntax instead of //+
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
|
||||
A test suite for `core:net`
|
||||
*/
|
||||
//+build !netbsd
|
||||
//+build !openbsd
|
||||
#+build !netbsd
|
||||
#+build !openbsd
|
||||
package test_core_net
|
||||
|
||||
import "core:testing"
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
A test suite for `core:net`
|
||||
*/
|
||||
//+build freebsd
|
||||
#+build freebsd
|
||||
package test_core_net
|
||||
|
||||
import "core:net"
|
||||
|
||||
@@ -34,8 +34,8 @@ package main
|
||||
},
|
||||
}, {// [2]
|
||||
src = `
|
||||
//+build linux, darwin, freebsd, openbsd, netbsd, haiku
|
||||
//+build arm32, arm64
|
||||
#+build linux, darwin, freebsd, openbsd, netbsd, haiku
|
||||
#+build arm32, arm64
|
||||
package main
|
||||
`,
|
||||
tags = {
|
||||
@@ -57,10 +57,10 @@ package main
|
||||
},
|
||||
}, {// [3]
|
||||
src = `
|
||||
// +private
|
||||
//+lazy
|
||||
// +no-instrumentation
|
||||
//+ignore
|
||||
#+private
|
||||
#+lazy
|
||||
#+no-instrumentation
|
||||
#+ignore
|
||||
// some other comment
|
||||
package main
|
||||
`,
|
||||
@@ -75,8 +75,8 @@ package main
|
||||
},
|
||||
}, {// [4]
|
||||
src = `
|
||||
//+build-project-name foo !bar, baz
|
||||
//+build js wasm32, js wasm64p32
|
||||
#+build-project-name foo !bar, baz
|
||||
#+build js wasm32, js wasm64p32
|
||||
package main
|
||||
`,
|
||||
tags = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build darwin, freebsd, openbsd, netbsd
|
||||
#+build darwin, freebsd, openbsd, netbsd
|
||||
package tests_core_posix
|
||||
|
||||
import "base:runtime"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build darwin, freebsd, openbsd, netbsd
|
||||
#+build darwin, freebsd, openbsd, netbsd
|
||||
package tests_core_posix
|
||||
|
||||
import "core:log"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "core:testing"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "base:intrinsics"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "base:intrinsics"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "core:testing"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "base:intrinsics"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows // generated by win32gen
|
||||
|
||||
import "core:testing"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//+build windows
|
||||
#+build windows
|
||||
package test_core_sys_windows
|
||||
|
||||
import "core:testing"
|
||||
|
||||
@@ -902,7 +902,7 @@ static void verify_error_helpers(ofstream& out) {
|
||||
}
|
||||
|
||||
static void test_core_sys_windows(ofstream& out) {
|
||||
out << "//+build windows" << endl
|
||||
out << "#+build windows" << endl
|
||||
<< "package " << __func__
|
||||
<< " // generated by " << path(__FILE__).filename().replace_extension("").string() << endl
|
||||
<< endl
|
||||
|
||||
Reference in New Issue
Block a user