Skip to content

Commit

Permalink
Spacing alignment in ty-class-instance
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 authored and stylewarning committed Jan 28, 2025
1 parent 152cbc4 commit 018fb6c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/typechecker/environment.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -686,12 +686,12 @@
;;;

(defstruct ty-class-instance
(constraints (util:required 'constraints) :type ty-predicate-list :read-only t)
(predicate (util:required 'predicate) :type ty-predicate :read-only t)
(codegen-sym (util:required 'codegen-sym) :type symbol :read-only t)
(method-codegen-syms (util:required 'method-codegen-syms) :type util:symbol-list :read-only t)
(method-codegen-inline-p (util:required 'method-codegen-inline-p) :type list :read-only t)
(docstring (util:required 'docstring) :type (or null string) :read-only t))
(constraints (util:required 'constraints) :type ty-predicate-list :read-only t)
(predicate (util:required 'predicate) :type ty-predicate :read-only t)
(codegen-sym (util:required 'codegen-sym) :type symbol :read-only t)
(method-codegen-syms (util:required 'method-codegen-syms) :type util:symbol-list :read-only t)
(method-codegen-inline-p (util:required 'method-codegen-inline-p) :type list :read-only t)
(docstring (util:required 'docstring) :type (or null string) :read-only t))

(defmethod source:docstring ((self ty-class-instance))
(ty-class-instance-docstring self))
Expand Down

0 comments on commit 018fb6c

Please sign in to comment.