Skip to content
Snippets Groups Projects
Commit bfbdec84 authored by Kai Koehne's avatar Kai Koehne
Browse files

Avoid hitting the anonymous wrapper functions in .qml file


QtDeclarative generates anonymous wrapper functions for QML bindings
and slots, e.g.

    onPressed(): { i++ }

becomes

(function (onPressed) { i++ } )

v8 will by default break when the anonymous function is called, not
when the actual code is executed. If we now hit this outer function
we'll relocate the breakpoint to column = 1, and continue.

Change-Id: Ieea4f4ea4fbf21d7245a6243fc36d141948ef2ce
Reviewed-by: default avatarAurindam Jana <aurindam.jana@nokia.com>
parent 19b539c9
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment