pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2019-11-02
2019-11-02 20:18:26 by Peter Bortas <bortas@gmail.com>
4258a972038b093207a312e4e35104e64f7635cc (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Change "?->" to the new "->?" syntax throughout Pike
394:
mixed foo() { array a;
-
array b = a->f("b")
?
->b;
+
array b = a->f("b")->
?
b;
return b; } ]])