File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22if [ ! -d WebKit ]
33then
4- git clone -- depth=1 git://git.webkit.org /WebKit.git WebKit;
4+ git clone -b Safari-611.1.5.1 -- depth=1 git@github.com:WebKit /WebKit.git WebKit;
55 cd WebKit;
66 Tools/Scripts/build-jsc --jsc-only;
77 cd ..
Original file line number Diff line number Diff line change @@ -2918,7 +2918,7 @@ reduces them without incurring seq initialization"
29182918 " Bitwise shift right"
29192919 [x n] (cljs.core/bit-shift-right x n))
29202920
2921- (defn bit-shift-right-zero-fill
2921+ (defn ^int bit-shift-right-zero-fill
29222922 " DEPRECATED: Bitwise shift right with zero fill"
29232923 [x n] (cljs.core/bit-shift-right-zero-fill x n))
29242924
@@ -5394,7 +5394,7 @@ reduces them without incurring seq initialization"
53945394 _ (pv-aset r 0 embed)]
53955395 (recur (- ll 5 ) r)))))
53965396
5397- (defn- push-tail [pv level parent tailnode]
5397+ (defn- push-tail [pv ^int level parent tailnode]
53985398 (let [ret (pv-clone-node parent)
53995399 subidx (bit-and (bit-shift-right-zero-fill (dec (.-cnt pv)) level) 0x01f )]
54005400 (if (== 5 level)
You can’t perform that action at this time.
0 commit comments