String returns a pointer to a block of memory in the constant address-space holding the string s. The string will be stored with a null-terminating byte.
(s string)
| 380 | // String returns a pointer to a block of memory in the constant address-space |
| 381 | // holding the string s. The string will be stored with a null-terminating byte. |
| 382 | func (b *Builder) String(s string) value.Pointer { |
| 383 | return b.constantMemory.writeString(s) |
| 384 | } |
| 385 | |
| 386 | // Call will invoke the function f, popping all parameter values previously |
| 387 | // pushed to the stack with Push, starting with the first parameter. If f has |
no test coverage detected