Skip to content
Commit bab6bf25 authored by Milian Wolff's avatar Milian Wolff
Browse files

Add support for php 5.4's short array syntax.

A first step towards support for the new syntax features introduced
in PHP 5.4. This implements parsing support for the short (json-style)
array syntax where one can rewrite

$var = array( "key" => "value" );

as

$var = [ "key" => "value" ];

BUG: 305779
REVIEW: 110374
parent 6d2e87e9
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment