func github.com/evanw/esbuild/internal/js_lexer.IsIdentifierUTF16
7 uses
github.com/evanw/esbuild/internal/js_lexer (current package)
js_lexer.go#L539: func IsIdentifierUTF16(text []uint16) bool {
github.com/evanw/esbuild/internal/bundler
linker.go#L1498: if str, ok := property.Key.Data.(*js_ast.EString); ok && (!file.isEntryPoint || js_lexer.IsIdentifierUTF16(str.Value)) {
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L9017: if str, ok := key.Data.(*js_ast.EString); ok && js_lexer.IsIdentifierUTF16(str.Value) {
js_parser.go#L10496: if str, ok := e.Index.Data.(*js_ast.EString); ok && js_lexer.IsIdentifierUTF16(str.Value) {
js_parser.go#L10972: if str, ok := key.Data.(*js_ast.EString); ok && js_lexer.IsIdentifierUTF16(str.Value) {
ts_parser.go#L800: if !opts.isTypeScriptDeclare && js_lexer.IsIdentifierUTF16(value.Name) {
github.com/evanw/esbuild/internal/js_printer
js_printer.go#L769: return js_lexer.IsIdentifierUTF16(name) && (!p.options.ASCIIOnly ||
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |