Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
3631469d
Commit
3631469d
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added new info types for online documentation.
parent
e5e456d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/globaldb.lisp
+14
-0
14 additions, 0 deletions
compiler/globaldb.lisp
with
14 additions
and
0 deletions
compiler/globaldb.lisp
+
14
−
0
View file @
3631469d
...
...
@@ -949,6 +949,8 @@
;;; structure containing the info used to special-case compilation.
(
define-info-type
function
info
(
or
function-info
null
)
nil
)
(
define-info-type
function
documentation
(
or
string
null
)
nil
)
)
; defun function-info-init
#|
...
...
@@ -994,6 +996,8 @@
(
define-info-type
variable
alien-value
(
or
lisp::ct-a-val
null
)
nil
)
(
define-info-type
variable
documentation
(
or
string
null
)
nil
)
(
define-info-class
type
)
;;; The kind of type described. We return :Structure for standard types that
...
...
@@ -1010,6 +1014,8 @@
;;; Defstruct description information for a structure type.
(
define-info-type
type
structure-info
(
or
defstruct-description
null
)
nil
)
(
define-info-type
type
documentation
(
or
string
null
))
(
define-info-class
declaration
)
(
define-info-type
declaration
recognized
boolean
)
...
...
@@ -1023,9 +1029,17 @@
(
define-info-type
setf
inverse
(
or
symbol
null
)
nil
)
(
define-info-type
setf
documentation
(
or
string
null
)
nil
)
;;; ### bootstrap hack...
;;; Allow List for function for now.
;;;
(
define-info-type
setf
expander
(
or
function
null
list
)
nil
)
;;; Used for storing random documentation types. The stuff is an alist
;;; translating documentation kinds to values.
;;;
(
define-info-class
random-documentation
)
(
define-info-type
random-documentation
stuff
list
())
)
; defun other-info-init
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment