[Webkit-unassigned] [Bug 190926] New: Add rudimentary `console` support to jsc for use when inspecting jsc

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 25 16:14:47 PDT 2018


https://bugs.webkit.org/show_bug.cgi?id=190926

            Bug ID: 190926
           Summary: Add rudimentary `console` support to jsc for use when
                    inspecting jsc
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: joepeck at webkit.org

Add rudimentary `console` support to jsc for use when inspecting jsc

Currently:

    $ jsc
    >>> console.log("test")
    Exception: TypeError: undefined is not an object (evaluating 'console.log')

Expected something like:

    $ jsc --enable-console
    >>> console.log('test')
    CONSOLE LOG test
    undefined

It is rudimentary, just using our currently Log to System Console support, not node.js like `console` support. But when a JSContext Inspector is attached (jsc --remote-debug) this allows for full `console` support).

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181025/91a9b119/attachment.html>


More information about the webkit-unassigned mailing list