fuzzyc2cpg icon indicating copy to clipboard operation
fuzzyc2cpg copied to clipboard

Unable to parse designated initialisers

Open GlassAndOneHalf opened this issue 4 years ago • 0 comments

The following piece of code is parsed as water:

int arr[5] = {
  [0] = 12,
  [1] = 34,
};

The grammar does not currently support designated initialisers. More details about designated initialisers and the various forms they can take may be found here.

GlassAndOneHalf avatar Sep 18 '19 13:09 GlassAndOneHalf