Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CodeMirror
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue 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
Moritz Aurel Pascal Schubotz
CodeMirror
Commits
beb975f7
Commit
beb975f7
authored
10 years ago
by
Radek Piórkowski
Committed by
Marijn Haverbeke
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[php mode] Add support for interpolated variables in double-quoted strings.
parent
5c6366fa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
mode/php/index.html
+5
-1
5 additions, 1 deletion
mode/php/index.html
mode/php/php.js
+96
-1
96 additions, 1 deletion
mode/php/php.js
mode/php/test.js
+145
-0
145 additions, 0 deletions
mode/php/test.js
test/index.html
+3
-0
3 additions, 0 deletions
test/index.html
with
249 additions
and
2 deletions
mode/php/index.html
+
5
−
1
View file @
beb975f7
...
...
@@ -32,8 +32,12 @@
<h2>
PHP mode
</h2>
<form><textarea
id=
"code"
name=
"code"
>
<?php
$a = array('a' => 1, 'b' => 2, 3 => 'c');
echo "$a[a] ${a[3] /* } comment */} {$a[b]} \$a[a]";
function hello($who) {
return "Hello
" .
$who;
return "Hello $who
!"
;
}
?>
<p>
The program says
<?= hello("World") ?>
.
</p>
...
...
This diff is collapsed.
Click to expand it.
mode/php/php.js
+
96
−
1
View file @
beb975f7
...
...
@@ -21,6 +21,82 @@
};
}
// Two helper functions for encapsList
function
matchFirst
(
list
)
{
return
function
(
stream
)
{
for
(
var
i
=
0
;
i
<
list
.
length
;
++
i
)
if
(
stream
.
match
(
list
[
i
][
0
]))
return
list
[
i
][
1
];
return
false
;
};
}
function
matchSequence
(
list
)
{
if
(
list
.
length
==
0
)
return
encapsList
;
return
function
(
stream
,
state
)
{
var
result
=
list
[
0
](
stream
,
state
);
if
(
result
!==
false
)
{
state
.
tokenize
=
matchSequence
(
list
.
slice
(
1
));
return
result
;
}
else
{
state
.
tokenize
=
encapsList
;
return
"
string
"
;
}
};
}
function
encapsList
(
stream
,
state
)
{
var
escaped
=
false
,
next
,
end
=
false
;
if
(
stream
.
current
()
==
'
"
'
)
return
"
string
"
;
// "Complex" syntax
if
(
stream
.
match
(
"
${
"
,
false
)
||
stream
.
match
(
"
{$
"
,
false
))
{
state
.
tokenize
=
null
;
return
"
string
"
;
}
// Simple syntax
if
(
stream
.
match
(
/
\$[
a-zA-Z_
][
a-zA-Z0-9_
]
*/
))
{
// After the variable name there may appear array or object operator.
if
(
stream
.
match
(
"
[
"
,
false
))
{
// Match array operator
state
.
tokenize
=
matchSequence
([
matchFirst
([[
"
[
"
,
null
]]),
matchFirst
([
[
/
\d[\w\.]
*/
,
"
number
"
],
[
/
\$[
a-zA-Z_
][
a-zA-Z0-9_
]
*/
,
"
variable-2
"
],
[
/
[\w\$]
+/
,
"
variable
"
]
]),
matchFirst
([[
"
]
"
,
null
]])
]);
}
if
(
stream
.
match
(
/
\-\>\w
/
,
false
))
{
// Match object operator
state
.
tokenize
=
matchSequence
([
matchFirst
([[
"
->
"
,
null
]]),
matchFirst
([[
/
[\w]
+/
,
"
variable
"
]])
]);
}
return
"
variable-2
"
;
}
// Normal string
while
(
!
stream
.
eol
()
&&
(
!
stream
.
match
(
"
{$
"
,
false
))
&&
(
!
stream
.
match
(
/
(\$[
a-zA-Z_
][
a-zA-Z0-9_
]
*|
\$\{)
/
,
false
)
||
escaped
)
)
{
next
=
stream
.
next
();
if
(
!
escaped
&&
next
==
'
"
'
)
{
end
=
true
;
break
;
}
escaped
=
!
escaped
&&
next
==
"
\\
"
;
}
if
(
end
)
{
state
.
tokenize
=
null
;
state
.
phpEncapsStack
.
pop
();
}
return
"
string
"
;
}
var
phpKeywords
=
"
abstract and array as break case catch class clone const continue declare default
"
+
"
do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final
"
+
"
for foreach function global goto if implements interface instanceof namespace
"
+
...
...
@@ -62,6 +138,24 @@
return
"
comment
"
;
}
return
false
;
},
'
"
'
:
function
(
stream
,
state
)
{
if
(
!
state
.
phpEncapsStack
)
state
.
phpEncapsStack
=
[];
state
.
phpEncapsStack
.
push
(
0
);
state
.
tokenize
=
encapsList
;
return
state
.
tokenize
(
stream
,
state
);
},
"
{
"
:
function
(
_stream
,
state
)
{
if
(
state
.
phpEncapsStack
&&
state
.
phpEncapsStack
.
length
>
0
)
state
.
phpEncapsStack
[
state
.
phpEncapsStack
.
length
-
1
]
++
;
return
false
;
},
"
}
"
:
function
(
_stream
,
state
)
{
if
(
state
.
phpEncapsStack
&&
state
.
phpEncapsStack
.
length
>
0
)
if
(
--
state
.
phpEncapsStack
[
state
.
phpEncapsStack
.
length
-
1
]
==
0
)
state
.
tokenize
=
encapsList
;
return
false
;
}
}
};
...
...
@@ -101,7 +195,8 @@
state
.
curState
=
state
.
html
;
return
"
meta
"
;
}
else
{
return
phpMode
.
token
(
stream
,
state
.
curState
);
var
result
=
phpMode
.
token
(
stream
,
state
.
curState
);
return
(
stream
.
pos
<=
stream
.
start
)
?
phpMode
.
token
(
stream
,
state
.
curState
)
:
result
;
}
}
...
...
This diff is collapsed.
Click to expand it.
mode/php/test.js
0 → 100644
+
145
−
0
View file @
beb975f7
(
function
()
{
var
mode
=
CodeMirror
.
getMode
({
indentUnit
:
2
},
"
php
"
);
function
MT
(
name
)
{
test
.
mode
(
name
,
mode
,
Array
.
prototype
.
slice
.
call
(
arguments
,
1
));
}
MT
(
'
simple_test
'
,
'
[meta <?php]
'
+
'
[keyword echo] [string "aaa"];
'
+
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_non_alphanumeric
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "aaa$~$!$@$#$$$%$^$&$*$($)$.$<$>$/$
\\
$}$
\\\
"$:$;$?$|$[[$]]$+$=aaa"]
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_digits
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "aaa$1$2$3$4$5$6$7$8$9$0aaa"]
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_simple_syntax_1
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "aaa][variable-2 $aaa][string .aaa"];
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_simple_syntax_2
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "][variable-2 $aaaa][[
'
,
'
[number 2]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "][variable-2 $aaaa][[
'
,
'
[number 2345]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "][variable-2 $aaaa][[
'
,
'
[number 2.3]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "][variable-2 $aaaa][[
'
,
'
[variable aaaaa]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "][variable-2 $aaaa][[
'
,
'
[variable-2 $aaaaa]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "1aaa][variable-2 $aaaa][[
'
,
'
[number 2]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa][[
'
,
'
[number 2345]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa][[
'
,
'
[number 2.3]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa][[
'
,
'
[variable aaaaa]
'
,
'
]][string aa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa][[
'
,
'
[variable-2 $aaaaa]
'
,
'
]][string aa"];
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_simple_syntax_3
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa]->[variable aaaaa][string .aaaaaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa][string ->][variable-2 $aaaaa][string .aaaaaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa]->[variable aaaaa][string [[2]].aaaaaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $aaaa]->[variable aaaaa][string ->aaaa2.aaaaaa"];
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_escaping
'
,
'
[meta <?php] [comment /* Escaping */]
'
,
'
[keyword echo] [string "aaa
\\
$aaaa->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa
\\
$aaaa[[2]]aaa.aaa"];
'
,
'
[keyword echo] [string "aaa
\\
$aaaa[[asd]]aaa.aaa"];
'
,
'
[keyword echo] [string "aaa{
\\
$aaaa->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa{
\\
$aaaa[[2]]aaa.aaa"];
'
,
'
[keyword echo] [string "aaa{
\\
aaaaa[[asd]]aaa.aaa"];
'
,
'
[keyword echo] [string "aaa
\\
${aaaa->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa
\\
${aaaa[[2]]aaa.aaa"];
'
,
'
[keyword echo] [string "aaa
\\
${aaaa[[asd]]aaa.aaa"];
'
,
'
[meta ?>]
'
);
MT
(
'
variable_interpolation_complex_syntax_1
'
,
'
[meta <?php]
'
,
'
[keyword echo] [string "aaa][variable-2 $]{[variable aaaa]}[string ->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $]{[variable-2 $aaaa]}[string ->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $]{[variable-2 $aaaa][[
'
,
'
[number 42]
'
,
'
]]}[string ->aaa.aaa"];
'
,
'
[keyword echo] [string "aaa][variable-2 $]{[variable aaaa][meta ?>]aaaaaa
'
);
MT
(
'
variable_interpolation_complex_syntax_2
'
,
'
[meta <?php] [comment /* Monsters */]
'
,
'
[keyword echo] [string "][variable-2 $]{[variable aaa][comment /*}?>} $aaa<?php } */]}[string ->aaa.aaa"];
'
,
'
[keyword echo] [string "][variable-2 $]{[variable aaa][comment /*}?>*/][[
'
,
'
[string "aaa][variable-2 $aaa][string {}][variable-2 $]{[variable aaa]}[string "]
'
,
'
]]}[string ->aaa.aaa"];
'
,
'
[keyword echo] [string "][variable-2 $]{[variable aaa][comment /*} } $aaa } */]}[string ->aaa.aaa"];
'
);
function
build_recursive_monsters
(
nt
,
t
,
n
){
var
monsters
=
[
t
];
for
(
var
i
=
1
;
i
<=
n
;
++
i
)
monsters
[
i
]
=
nt
.
join
(
monsters
[
i
-
1
]);
return
monsters
;
}
var
m1
=
build_recursive_monsters
(
[
'
[string "][variable-2 $]{[variable aaa] [operator +]
'
,
'
}[string "]
'
],
'
[comment /* }?>} */] [string "aaa][variable-2 $aaa][string .aaa"]
'
,
10
);
MT
(
'
variable_interpolation_complex_syntax_3_1
'
,
'
[meta <?php] [comment /* Recursive monsters */]
'
,
'
[keyword echo]
'
+
m1
[
4
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
7
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
8
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
5
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
1
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
6
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
9
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
0
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
10
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
2
]
+
'
;
'
,
'
[keyword echo]
'
+
m1
[
3
]
+
'
;
'
,
'
[keyword echo] [string "end"];
'
,
'
[meta ?>]
'
);
var
m2
=
build_recursive_monsters
(
[
'
[string "a][variable-2 $]{[variable aaa] [operator +]
'
,
'
[operator +]
'
,
'
}[string .a"]
'
],
'
[comment /* }?>{{ */] [string "a?>}{{aa][variable-2 $aaa][string .a}a?>a"]
'
,
5
);
MT
(
'
variable_interpolation_complex_syntax_3_2
'
,
'
[meta <?php] [comment /* Recursive monsters 2 */]
'
,
'
[keyword echo]
'
+
m2
[
0
]
+
'
;
'
,
'
[keyword echo]
'
+
m2
[
1
]
+
'
;
'
,
'
[keyword echo]
'
+
m2
[
5
]
+
'
;
'
,
'
[keyword echo]
'
+
m2
[
4
]
+
'
;
'
,
'
[keyword echo]
'
+
m2
[
2
]
+
'
;
'
,
'
[keyword echo]
'
+
m2
[
3
]
+
'
;
'
,
'
[keyword echo] [string "end"];
'
,
'
[meta ?>]
'
);
function
build_recursive_monsters_2
(
mf1
,
mf2
,
nt
,
t
,
n
){
var
monsters
=
[
t
];
for
(
var
i
=
1
;
i
<=
n
;
++
i
)
monsters
[
i
]
=
nt
[
0
]
+
mf1
[
i
-
1
]
+
nt
[
1
]
+
mf2
[
i
-
1
]
+
nt
[
2
]
+
monsters
[
i
-
1
]
+
nt
[
3
];
return
monsters
;
}
var
m3
=
build_recursive_monsters_2
(
m1
,
m2
,
[
'
[string "a][variable-2 $]{[variable aaa] [operator +]
'
,
'
[operator +]
'
,
'
[operator +]
'
,
'
}[string .a"]
'
],
'
[comment /* }?>{{ */] [string "a?>}{{aa][variable-2 $aaa][string .a}a?>a"]
'
,
4
);
MT
(
'
variable_interpolation_complex_syntax_3_3
'
,
'
[meta <?php] [comment /* Recursive monsters 2 */]
'
,
'
[keyword echo]
'
+
m3
[
4
]
+
'
;
'
,
'
[keyword echo]
'
+
m3
[
0
]
+
'
;
'
,
'
[keyword echo]
'
+
m3
[
3
]
+
'
;
'
,
'
[keyword echo]
'
+
m3
[
1
]
+
'
;
'
,
'
[keyword echo]
'
+
m3
[
2
]
+
'
;
'
,
'
[keyword echo] [string "end"];
'
,
'
[meta ?>]
'
);
})();
This diff is collapsed.
Click to expand it.
test/index.html
+
3
−
0
View file @
beb975f7
...
...
@@ -15,6 +15,8 @@
<script
src=
"../addon/edit/matchbrackets.js"
></script>
<script
src=
"../addon/comment/comment.js"
></script>
<script
src=
"../mode/javascript/javascript.js"
></script>
<script
src=
"../mode/clike/clike.js"
></script>
<script
src=
"../mode/php/php.js"
></script>
<script
src=
"../mode/xml/xml.js"
></script>
<script
src=
"../keymap/vim.js"
></script>
<script
src=
"../keymap/emacs.js"
></script>
...
...
@@ -78,6 +80,7 @@
<script
src=
"search_test.js"
></script>
<script
src=
"mode_test.js"
></script>
<script
src=
"../mode/javascript/test.js"
></script>
<script
src=
"../mode/php/test.js"
></script>
<script
src=
"../mode/css/css.js"
></script>
<script
src=
"../mode/css/test.js"
></script>
<script
src=
"../mode/css/scss_test.js"
></script>
...
...
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