File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
if [ ! -d WebKit ]
3
3
then
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;
5
5
cd WebKit;
6
6
Tools/Scripts/build-jsc --jsc-only;
7
7
cd ..
Original file line number Diff line number Diff line change @@ -2918,7 +2918,7 @@ reduces them without incurring seq initialization"
2918
2918
" Bitwise shift right"
2919
2919
[x n] (cljs.core/bit-shift-right x n))
2920
2920
2921
- (defn bit-shift-right-zero-fill
2921
+ (defn ^int bit-shift-right-zero-fill
2922
2922
" DEPRECATED: Bitwise shift right with zero fill"
2923
2923
[x n] (cljs.core/bit-shift-right-zero-fill x n))
2924
2924
@@ -5394,7 +5394,7 @@ reduces them without incurring seq initialization"
5394
5394
_ (pv-aset r 0 embed)]
5395
5395
(recur (- ll 5 ) r)))))
5396
5396
5397
- (defn- push-tail [pv level parent tailnode]
5397
+ (defn- push-tail [pv ^int level parent tailnode]
5398
5398
(let [ret (pv-clone-node parent)
5399
5399
subidx (bit-and (bit-shift-right-zero-fill (dec (.-cnt pv)) level) 0x01f )]
5400
5400
(if (== 5 level)
You can’t perform that action at this time.
0 commit comments