Closed
Bug 414429
Opened 17 years ago
Closed 3 years ago
%S escape to print JSString
Categories
(Core :: JavaScript Engine, enhancement)
Core
JavaScript Engine
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: igor, Unassigned)
Details
Currently in a few places the debug-related code contains sequences like:
fprintf(file, "... %s ... ", ..., JS_GetStringBytes(str), ...)
It would be nice if JS printf routins support %S escape to print JSString instances directly so the above becomes:
JS_fprintf(file, "... %S ... ", ..., str, ...)
| Reporter | ||
Updated•13 years ago
|
Assignee: igor → general
| Assignee | ||
Updated•11 years ago
|
Assignee: general → nobody
Updated•3 years ago
|
Status: NEW → RESOLVED
Closed: 3 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•