source: trunk/abcl/contrib/jss/jss.asd @ 15146

Last change on this file since 15146 was 15146, checked in by Mark Evenson, 4 years ago

JSS read sharp expression bugfixes
(Alan Ruttenberg)

Fix the following in JSS:

1) method call expression lookup java class for jstatic.
2) maybe-class, if it isn't a class, intern in current package vs. jss

Added missing <file:contrib/jss/util.lisp> from the head as of
github.com/alanruttenberg/abcl
with commit 2dab9f16384f279afe0127ef3c540811939c5bcb
<https://github.com/alanruttenberg/abcl/commit/0ce3f7d0e8003d2ca66cf59c4cd5d32a7c8f4f40>.

Untabify all source units for sanity.

Merges <https://github.com/armedbear/abcl/pull/65>.

Via
<https://github.com/armedbear/abcl/pull/65/commits/4461941d335feb298fd246f29967766c213b0e8c>,
<https://github.com/armedbear/abcl/pull/65/commits/3a681f852f0dc0581f8d47393e0d2d5d6e58596f>.

File size: 832 bytes
Line 
1;;;; -*- Mode: LISP -*-
2(defsystem jss
3  :author "Alan Ruttenberg, Mark Evenson"
4  :long-description "<urn:abcl.org/release/1.6.0/contrib/jss#>"
5  :version "3.6.0"
6  :components ((:module base :pathname "" :serial t
7                        :components ((:file "packages")
8                                     (:file "invoke")
9                                     (:file "collections")
10                                     (:file "optimize-java-call")
11                                     (:file "classpath")
12                                     (:file "transform-to-field")
13                                     (:file "compat")
14                                     (:file "jtypecase")
15                                     (:file "util"))))
16  :perform (asdf:test-op (op c)
17                         (asdf:test-system :jss-tests)))
18
Note: See TracBrowser for help on using the repository browser.