Add IndexOutOfBoundsException and Map$Entry (#751)
* Add IndexOutOfBoundsException, IHashEq and Map$Entry * Remove IHashEq interface
This commit is contained in:
parent
16e92fa581
commit
39284ae707
3 changed files with 8 additions and 1 deletions
|
|
@ -118,6 +118,7 @@
|
|||
java.lang.Exception
|
||||
java.lang.Float
|
||||
java.lang.IllegalArgumentException
|
||||
java.lang.IndexOutOfBoundsException
|
||||
java.lang.Integer
|
||||
java.lang.Iterable
|
||||
java.lang.Long
|
||||
|
|
@ -297,7 +298,8 @@
|
|||
clojure.lang.Seqable
|
||||
clojure.lang.Volatile
|
||||
java.util.List
|
||||
java.util.Iterator]
|
||||
java.util.Iterator
|
||||
java.util.Map$Entry]
|
||||
:custom ~custom-map})
|
||||
|
||||
(defmacro gen-class-map []
|
||||
|
|
|
|||
|
|
@ -62,6 +62,10 @@
|
|||
clojure.lang.ILookup
|
||||
{valAt [[this k] [this k default]]}
|
||||
|
||||
java.util.Map$Entry
|
||||
{getKey [[this]]
|
||||
getValue [[this]]}
|
||||
|
||||
clojure.lang.IFn
|
||||
{applyTo [[this arglist]]
|
||||
invoke [[this]
|
||||
|
|
|
|||
|
|
@ -436,6 +436,7 @@ Use -- to separate script command line args from bb command line args.
|
|||
Comparable java.lang.Comparable
|
||||
Double java.lang.Double
|
||||
Exception java.lang.Exception
|
||||
IndexOutOfBoundsException java.lang.IndexOutOfBoundsException
|
||||
IllegalArgumentException java.lang.IllegalArgumentException
|
||||
Integer java.lang.Integer
|
||||
Iterable java.lang.Iterable
|
||||
|
|
|
|||
Loading…
Reference in a new issue