Skip to content

Commit 6928429

Browse files
committed
Merge branch 'Tensegritics:main' into ianffcs/audio_service-sample
2 parents a892413 + 38aef05 commit 6928429

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1823
-10
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ test/cljd-out/*
1212
.*
1313
!.github
1414
tmp/
15+
16+
# FVM Version Cache
17+
.fvm/

clj/src/cljd/build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
(println (str "💀 Flutter sub-process exited with " (.exitValue p)))))
317317
(finally
318318
(some-> p .destroy)))))
319-
compilation-success))))))
319+
(or compilation-success (System/exit 1))))))))
320320

321321
(defn test-cli [& {:keys [namespaces]}]
322322
(when (compile-cli :namespaces namespaces)

clj/src/cljd/compiler.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
; You must not remove this notice, or any other, from this software.
88

99
(ns cljd.compiler
10-
(:refer-clojure :exclude [macroexpand macroexpand-1 munge compile])
10+
(:refer-clojure :exclude [macroexpand macroexpand-1 munge compile read])
1111
(:require [clojure.string :as str]
1212
[clojure.java.io :as io]
1313
[clojure.edn :as edn]))

clj/src/cljd/core.cljd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1500,6 +1500,8 @@
15001500

15011501
(defn get
15021502
"Returns the value mapped to key, not-found or nil if key not present."
1503+
{:inline (call-to `-lookup)
1504+
:inline-arities #{2 3}}
15031505
([map key]
15041506
(-lookup map key))
15051507
([map key not-found]
@@ -1637,9 +1639,9 @@
16371639
(defn rseq
16381640
"Returns, in constant time, a seq of the items in rev (which
16391641
can be a vector or sorted-map), in reverse order. If rev is empty returns nil"
1640-
[rev]
16411642
{:inline (call-to `-rseq)
16421643
:inline-arities #{1}}
1644+
[rev]
16431645
(-rseq rev))
16441646

16451647
(defprotocol ISorted

resources/clj-kondo.exports/tensegritics/clojuredart/hooks/flutter2.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@
327327
(list
328328
(api/token-node 'fn)
329329
(if (api/vector-node? argsvec?)
330-
argsvec?
331-
(api/vector-node []))
330+
(api/vector-node (concat [(api/token-node '_ctx)] (:children argsvec?)))
331+
(api/vector-node [(api/token-node '_ctx)]))
332332
widget-node))]
333333
{:node result}))

samples/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
/*/android/*
33
/*/cljd.edn
44
/*/ios/*
5+
/*/build/*
56
/*/lib/*
67
/*/lib/*
78
/*/linux/*
89
/*/macos/*
910
/*/pubspec.yaml
1011
/*/README.md
1112
!/webview/README.md
13+
!/go_router/README.md
1214
!/syncfusion_flutter_charts/README.md
1315
/*/test/*
1416
/*/web/*
@@ -22,3 +24,4 @@
2224
!/fficjson/README.md
2325
!/fficjson/config.yaml
2426
!/fficjson/example.json
27+
!/platform_view/ios/

0 commit comments

Comments
 (0)