Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
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
Container Registry
Model registry
Operate
Environments
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
Didier Verna
asdf
Commits
4035870e
Commit
4035870e
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Remove the attractive nuisance of :initarg for :allocation :class slots.
parent
b1a615f3
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
action.lisp
+4
-5
4 additions, 5 deletions
action.lisp
with
4 additions
and
5 deletions
action.lisp
+
4
−
5
View file @
4035870e
...
@@ -135,7 +135,7 @@ You can put together sentences using this phrase."))
...
@@ -135,7 +135,7 @@ You can put together sentences using this phrase."))
(
with-upgradability
()
(
with-upgradability
()
(
defclass
downward-operation
(
operation
)
(
defclass
downward-operation
(
operation
)
((
downward-operation
((
downward-operation
:initform
nil
:initarg
:downward-operation
:reader
downward-operation
:initform
nil
:reader
downward-operation
:type
operation-designator
:allocation
:class
))
:type
operation-designator
:allocation
:class
))
(
:documentation
"A DOWNWARD-OPERATION's dependencies propagate down the component hierarchy.
(
:documentation
"A DOWNWARD-OPERATION's dependencies propagate down the component hierarchy.
I.e., if O is a DOWNWARD-OPERATION and its DOWNWARD-OPERATION slot designates operation D, then
I.e., if O is a DOWNWARD-OPERATION and its DOWNWARD-OPERATION slot designates operation D, then
...
@@ -148,7 +148,7 @@ children of the MODULE must have been loaded with LOAD-OP (resp. compiled with C
...
@@ -148,7 +148,7 @@ children of the MODULE must have been loaded with LOAD-OP (resp. compiled with C
(
defclass
upward-operation
(
operation
)
(
defclass
upward-operation
(
operation
)
((
upward-operation
((
upward-operation
:initform
nil
:initarg
:upward-operation
:reader
upward-operation
:initform
nil
:reader
upward-operation
:type
operation-designator
:allocation
:class
))
:type
operation-designator
:allocation
:class
))
(
:documentation
"An UPWARD-OPERATION has dependencies that propagate up the component hierarchy.
(
:documentation
"An UPWARD-OPERATION has dependencies that propagate up the component hierarchy.
I.e., if O is an instance of UPWARD-OPERATION, and its UPWARD-OPERATION slot designates operation U,
I.e., if O is an instance of UPWARD-OPERATION, and its UPWARD-OPERATION slot designates operation U,
...
@@ -164,7 +164,7 @@ must first be prepared for loading or compiling with PREPARE-OP."))
...
@@ -164,7 +164,7 @@ must first be prepared for loading or compiling with PREPARE-OP."))
(
defclass
sideway-operation
(
operation
)
(
defclass
sideway-operation
(
operation
)
((
sideway-operation
((
sideway-operation
:initform
nil
:initarg
:sideway-operation
:reader
sideway-operation
:initform
nil
:reader
sideway-operation
:type
operation-designator
:allocation
:class
))
:type
operation-designator
:allocation
:class
))
(
:documentation
"A SIDEWAY-OPERATION has dependencies that propagate \"sideway\" to siblings
(
:documentation
"A SIDEWAY-OPERATION has dependencies that propagate \"sideway\" to siblings
that a component depends on. I.e. if O is a SIDEWAY-OPERATION, and its SIDEWAY-OPERATION slot
that a component depends on. I.e. if O is a SIDEWAY-OPERATION, and its SIDEWAY-OPERATION slot
...
@@ -180,8 +180,7 @@ each of its declared dependencies must first be loaded as by LOAD-OP."))
...
@@ -180,8 +180,7 @@ each of its declared dependencies must first be loaded as by LOAD-OP."))
(
defclass
selfward-operation
(
operation
)
(
defclass
selfward-operation
(
operation
)
((
selfward-operation
((
selfward-operation
:initarg
:selfward-operation
;; NB: no :initform -- if an operation depends on others,
;; NB: no :initform -- if an operation depends on others, it must explicitly specify which
;; which must be explicitly specified.
:type
(
or
operation-designator
list
)
:reader
selfward-operation
:allocation
:class
))
:type
(
or
operation-designator
list
)
:reader
selfward-operation
:allocation
:class
))
(
:documentation
"A SELFWARD-OPERATION depends on another operation on the same component.
(
:documentation
"A SELFWARD-OPERATION depends on another operation on the same component.
I.e., if O is a SELFWARD-OPERATION, and its SELFWARD-OPERATION designates a list of operations L,
I.e., if O is a SELFWARD-OPERATION, and its SELFWARD-OPERATION designates a list of operations L,
...
...
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