hyper-literate/pkgs/scribble-pkgs/scribble-lib/scribble/private/manual-class-struct.rkt
Matthew Flatt 8c1953bf47 raco setup and scribble: fix problems tracking document changes
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
2013-07-12 14:52:42 -06:00

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)