
Some non-transparent but serializable data structures broke the comparison between previous and new outputs, which caused too many document rebuilds. Includes a change to make module path indexes work with `equal?'. original commit: d5558a4fe0a0405140a6a44473f3000aef275685
9 lines
177 B
Racket
9 lines
177 B
Racket
#lang racket/base
|
|
(require racket/serialize)
|
|
|
|
(provide (all-defined-out))
|
|
|
|
(define-serializable-struct cls/intf
|
|
(name-element app-mixins super intfs methods)
|
|
#:transparent)
|