Skip to content
  • mevenson@1c010e3e-69d0-11dd-93a8-456734b0d56f's avatar
    Further fixes for JSS · 987f2662
    JAVAPARSER now "stacks" its macro definition on the existing one it
    inherits from JSS.
    
    Refactor all tests to just pollute CL-USER where necessary (strictly
    speaking it shouldn't be necessary as all PROVE tests should be able
    to use lexical bindings.
    
    Document existence of Java field access via SHARPSIGN-QUOTATION_MARK,
    e.g.
    
        (#"{java.lang.System}.{fileSeparator}")
    
    and the new Java DSL
    
        (asdf:make :javaparser)
        (#"'#1"new ByteBuddy()
          .subclass(Object.class,t)
          .method(ElementMatchers.named("toString"))
          .intercept(FixedValue.value("Hello World!"))
          .make()
          .load(getClass().getClassLoader())
          .getLoaded()"
    987f2662