Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
0f4ba9e7
Commit
0f4ba9e7
authored
13 years ago
by
Adam Radziszewski
Browse files
Options
Downloads
Patches
Plain Diff
comma -> semicolon in tag_rule_seq syntax
parent
bff3a72f
Branches
Branches containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libwccl/parser/grammar.g
+1
-1
1 addition, 1 deletion
libwccl/parser/grammar.g
tests/rules-data/tag/manyrules/prep-agr.ccl
+3
-3
3 additions, 3 deletions
tests/rules-data/tag/manyrules/prep-agr.ccl
tests/rules-data/tag/select/sel_agr.ccl
+1
-1
1 addition, 1 deletion
tests/rules-data/tag/select/sel_agr.ccl
with
5 additions
and
5 deletions
libwccl/parser/grammar.g
+
1
−
1
View file @
0f4ba9e7
...
...
@@ -2035,7 +2035,7 @@ tag_rule_sequence
rule_seq->push_back(*rle);
}
(
COMMA
rle = tag_rule [scope] {
SEMI
rle = tag_rule [scope] {
rule_seq->push_back(*rle);
}
)*
...
...
This diff is collapsed.
Click to expand it.
tests/rules-data/tag/manyrules/prep-agr.ccl
+
3
−
3
View file @
0f4ba9e7
...
...
@@ -7,7 +7,7 @@ tag_rules(
select(
in(cas[0], cas[-1])
)
)
,
)
;
rule("prep-subst-case", // [prep] with-case
and(
equal(class[0], prep),
...
...
@@ -16,12 +16,12 @@ tag_rules(
select(
in(cas[0], cas[1])
)
)
,
)
;
rule("agr-right", // [here] next
select(
agr(0,1,{nmb,gnd,cas})
)
)
,
)
;
rule("agr-left", // prev [here]
select(
agr(-1,0,{nmb,gnd,cas})
...
...
This diff is collapsed.
Click to expand it.
tests/rules-data/tag/select/sel_agr.ccl
+
1
−
1
View file @
0f4ba9e7
...
...
@@ -8,7 +8,7 @@ tag_rules(
select(
agrpp(0,2,{nmb,gnd,cas})
)
)
,
)
;
rule("sel-agr2",
and(
equal(class[0], subst),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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