/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/wasmexport.go
19 строк
390 B
Cherry Mui
cmd/compile: add basic wasmexport support
09 авг 2024, 23:07
09 авг 2024, 23:07
1cf6e31
Код
Авторство
О чём код?
// errorcheck // Copyright 2024 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. // Verify that misplaced directives are diagnosed. //go:build wasm package p //go:wasmexport F func F() {} // OK type S int32 //go:wasmexport M func (S) M() {} // ERROR "cannot use //go:wasmexport on a method"