You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,12 @@ Right now `orchard` provides functionality like:
19
19
- namespace utilities
20
20
- fetching ClojureDocs documentation
21
21
- finding function dependencies (other functions invoked by a function) and usages
22
-
- function tracer
22
+
- function tracer (alternative for `tools.trace`)
23
23
- simple function profiler
24
+
- fast pretty printing (alternative for `clojure.pprint`)
25
+
- eldoc (function signature) utilities
26
+
- indention data inference
27
+
- stacktrace analysis
24
28
25
29
## Why?
26
30
@@ -79,7 +83,8 @@ Documentation for the master branch as well as tagged releases are available
79
83
80
84
> [!NOTE]
81
85
>
82
-
> Java 8 is soft-deprecated in Orchard since version 0.29. Core Orchard funcitonality continues to work on JDK 8, but these following features don't:
86
+
> Java 8 is soft-deprecated in Orchard since version 0.29. Core Orchard functionality continues to work on JDK 8, but these following features don't:
87
+
>
83
88
> - Java sources parsing
84
89
85
90
Just add `orchard` as a dependency and start hacking.
@@ -178,11 +183,15 @@ The important implications from this are:
178
183
179
184
### Java 8 support
180
185
181
-
As noted earlier Java 8 is soft-deprecated in Orchard since version 0.29. Core Orchard funcitonality continues to work on JDK 8, but the following features don't:
186
+
As noted earlier Java 8 is soft-deprecated in Orchard since version 0.29. Core
187
+
Orchard funcitonality continues to work on JDK 8, but the following features
188
+
don't:
182
189
183
190
- Java sources parsing
184
191
185
-
We are aware that some people are stuck using Java 8 and we'll keep supporting for as long as we can, but it's no longer a priority for us that every feature works with Java 8.
192
+
We are aware that some people are stuck using Java 8 and we'll keep supporting
193
+
for as long as we can, but it's no longer a priority for us that every feature
0 commit comments