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
Hugo Ishimaru
asdf
Commits
cd6be7ac
Commit
cd6be7ac
authored
15 years ago
by
Gary King
Browse files
Options
Downloads
Patches
Plain Diff
cleaned defsystem grammar in manual
parent
a91af098
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
website/source/manual.mmd
+26
-22
26 additions, 22 deletions
website/source/manual.mmd
with
26 additions
and
22 deletions
website/source/manual.mmd
+
26
−
22
View file @
cd6be7ac
...
@@ -115,7 +115,7 @@ slightly convoluted example:
...
@@ -115,7 +115,7 @@ slightly convoluted example:
:components
:components
((:module "foo"
((:module "foo"
:components ((:file "bar")
:components ((:file "bar")
(:file"baz")
(:file
"baz")
(:file "quux"))
(:file "quux"))
:perform (compile-op :after (op c) (do-something c))
:perform (compile-op :after (op c) (do-something c))
:explain (compile-op :after (op c) (explain-something c)))
:explain (compile-op :after (op c) (explain-something c)))
...
@@ -147,38 +147,42 @@ before the component in question has been compiled."}
...
@@ -147,38 +147,42 @@ before the component in question has been compiled."}
system-definition := ( defsystem system-designator {option}* )
system-definition := ( defsystem system-designator {option}* )
option := :components component-list
option
:= :components component-list
| :pathname pathname
| :pathname pathname
| :default-component-class
| :default-component-class
| :perform method-form
| :perform method-form
| :explain method-form
| :explain method-form
| :output-files method-form
| :output-files method-form
| :operation-done-p method-form
| :operation-done-p method-form
| :depends-on ( {dependency-def}* )
| :depends-on ( {dependency-def}* )
| :serial [ t | nil ]
| :serial [ t | nil ]
| :in-order-to ( {dependency}+ )
| :in-order-to ( {dependency}+ )
component-list := ( {component-def}* )
component-list := ( {component-def}* )
component-def :=
simple-
component-name
component-def := component-name
| ( component-type name {option}* )
| ( component-type name {option}* )
component-type := :module | :file
component-type := :module | :file
| :system | other-component-type
| :system | other-component-type
dependency-def :=
simple-
component-name
dependency-def := component-name
| ( :feature name )
| ( :feature
feature-
name )
| ( :version
simple-
component-name version-specifier)
| ( :version component-name version-specifier)
dependency := (dependent-op {requirement}+)
dependency
:= (
dependent-op {requirement}+
)
requirement := (required-op {required-component}+)
requirement
:= (
required-op {required-component}+
)
| (feature feature-name)
| (
feature feature-name
)
dependent-op := operation-name
dependent-op
:= operation-name
required-op := operation-name
| feature
required-op
:= operation-name
simple-
component-name := string
component-name := string
|
symbol
|
symbol
operation-name := symbol
feature-name := symbol
version-specifier := number[.number]*
#### Serial dependencies
#### Serial dependencies
...
...
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