Skip to content

Commit 48372e0

Browse files
committed
clone a specific WebKit release
1 parent a1fb204 commit 48372e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/install_jsc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
if [ ! -d WebKit ]
33
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;
55
cd WebKit;
66
Tools/Scripts/build-jsc --jsc-only;
77
cd ..

src/main/cljs/cljs/core.cljs

+2-2
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)