Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
B Language Extension
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
B Language Extension
Compare revisions
4fac276d25de0a64924a7ef2ba5384eb84687752 to 4fdf859f135d79bd93743d7784be03a76f9b8a7f
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
general/stups/b_language_extension
Select target project
No results found
4fdf859f135d79bd93743d7784be03a76f9b8a7f
Select Git revision
Branches
develop
release
v0.x
Tags
v2.1.0
v2.2.0
5 results
Swap
Target
general/stups/b_language_extension
Select target project
general/stups/b_language_extension
1 result
4fac276d25de0a64924a7ef2ba5384eb84687752
Select Git revision
Branches
develop
release
v0.x
Tags
v2.1.0
v2.2.0
5 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
try to fix highlighting
· 6457914b
Jan Gruteser
authored
4 months ago
6457914b
add WITNESS keyword
· 4fdf859f
Jan Gruteser
authored
4 months ago
4fdf859f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
syntaxes/classicalb.tmLanguage.json
+2
-2
2 additions, 2 deletions
syntaxes/classicalb.tmLanguage.json
syntaxes/rmchAddOn.tmLanguage.json
+2
-2
2 additions, 2 deletions
syntaxes/rmchAddOn.tmLanguage.json
with
4 additions
and
4 deletions
syntaxes/classicalb.tmLanguage.json
View file @
4fdf859f
...
...
@@ -137,7 +137,7 @@
"name"
:
"string.quoted.backtickTriple.classicalb"
,
"patterns"
:
[
{
"match"
:
"
\\
$(
\\
[
.*
\\
])?
\\
{.
*
\\
}"
,
"match"
:
"
\\
$(
\\
[
[^${}
\\
[
\\
]]*
\\
])?
\\
{[^${}
\\
[
\\
]]
*
\\
}"
,
"name"
:
"constant.character.escape.template.classicalb"
}
]
...
...
@@ -278,7 +278,7 @@
"control_blocks"
:
{
"patterns"
:
[
{
"begin"
:
"(?x)
\n\\
b(BEGIN|PRE|SELECT|ANY|LET|VAR|ASSERT|WHILE|IF|CHOICE|CASE|EITHER)
\\
b"
,
"begin"
:
"(?x)
\n\\
b(BEGIN|PRE|SELECT|
WITNESS|
ANY|LET|VAR|ASSERT|WHILE|IF|CHOICE|CASE|EITHER)
\\
b"
,
"beginCaptures"
:
{
"0"
:
{
"name"
:
"keyword.control.classicalb"
...
...
This diff is collapsed.
Click to expand it.
syntaxes/rmchAddOn.tmLanguage.json
View file @
4fdf859f
...
...
@@ -143,7 +143,7 @@
"name"
:
"string.quoted.backtickTriple.rmchAddOn"
,
"patterns"
:
[
{
"match"
:
"
\\
$(
\\
[
.*
\\
])?
\\
{.
*
\\
}"
,
"match"
:
"
\\
$(
\\
[
[^${}
\\
[
\\
]]*
\\
])?
\\
{[^${}
\\
[
\\
]]
*
\\
}"
,
"name"
:
"constant.character.escape.template.rmchAddOn"
}
]
...
...
@@ -284,7 +284,7 @@
"control_blocks"
:
{
"patterns"
:
[
{
"begin"
:
"(?x)
\n\\
b(BEGIN|PRE|SELECT|ANY|LET|VAR|ASSERT|WHILE|FOR|DO|IF|CHOICE|CASE|EITHER|IN)
\\
b"
,
"begin"
:
"(?x)
\n\\
b(BEGIN|PRE|SELECT|
WITNESS|
ANY|LET|VAR|ASSERT|WHILE|FOR|DO|IF|CHOICE|CASE|EITHER|IN)
\\
b"
,
"beginCaptures"
:
{
"0"
:
{
"name"
:
"keyword.control.rmchAddOn"
...
...
This diff is collapsed.
Click to expand it.