jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/php/property_feature.test

19 lines
409 B
Plaintext
Raw Normal View History

2016-02-02 19:12:02 -07:00
$variable->property
$foo->bar->baz
----------------------------------------------------
[
["variable", "$variable"],
["operator", "-"], ["operator", ">"],
["property", "property"],
["variable", "$foo"],
["operator", "-"], ["operator", ">"],
["property", "bar"],
["operator", "-"], ["operator", ">"],
["property", "baz"]
]
----------------------------------------------------
Checks for properties.