rspec/rules/S2715/javascript/comments-and-links.adoc

29 lines
1.2 KiB
Plaintext

=== on 17 Mar 2015, 10:47:36 Linda Martin wrote:
\[~ann.campbell.2] assign for completion and review.
=== on 17 Mar 2015, 16:22:52 Ann Campbell wrote:
\[~linda.martin] it would be nice to have a bit fuller description here discussing what happens if you don't use ``++find++``
=== on 25 Mar 2015, 10:24:05 Linda Martin wrote:
\[~ann.campbell.2] as using ``++find++`` allows not to use Sizzle selector engine for the first selection but ``++document.getElementById()++``, when not using ``++find++`` the whole search will be done with Sizzle engine, which is slower.
*First case*: will do a first fast sort with the ID through native operation (document.getElementById()) then narrows down by launching the Sizzle engine
*Second case*: we directly launch the Sizzle engine with the whole request, which is slightly heavier and slower.
It is just a question of performance so when ``++find++`` will be used it will be faster, when not it will be slower.
=== on 25 Mar 2015, 14:22:22 Ann Campbell wrote:
\[~linda.martin] pong...
:-)
=== on 20 May 2015, 12:30:33 Linda Martin wrote:
OK!
=== on 1 Nov 2019, 17:28:08 Elena Vilchik wrote:
See \https://github.com/SonarSource/SonarJS/issues/1698