golang.org/x/crypto/ssh.optionsTupleValue.Value (field)

14 uses

	github.com/evanw/esbuild/internal/js_ast
		js_ast.go#L573: type EBigInt struct{ Value string }
		js_ast.go#L730: 		return Expr{Loc: expr.Loc, Data: &EBoolean{Value: e.Value == "0"}}, true

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L557: 		for _, c := range e.Value {
		js_parser.go#L609: 		return ok && a.Value == b.Value, false
		js_parser.go#L726: 		return e.Value != "0", noSideEffects, true
		js_parser.go#L908: 		return ok && l.Value == r.Value, ok
		js_parser.go#L1733: 		key = js_ast.Expr{Loc: p.lexer.Loc(), Data: &js_ast.EBigInt{Value: p.lexer.Identifier}}
		js_parser.go#L2091: 		key = js_ast.Expr{Loc: p.lexer.Loc(), Data: &js_ast.EBigInt{Value: p.lexer.Identifier}}
		js_parser.go#L2810: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EBigInt{Value: value}}
		js_parser.go#L8864: 		valueFunc = func() js_ast.Expr { return js_ast.Expr{Loc: loc, Data: &js_ast.EBigInt{Value: e.Value}} }

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1872: 		p.print(e.Value)