Example #1
0
 public ParserOptions(
     bool noLocations            = false,
     bool allowFragmentVariables = false)
 {
     NoLocations  = noLocations;
     Experimental = new ParserOptionsExperimental(
         allowFragmentVariables);
 }
Example #2
0
 public ParserOptions()
 {
     NoLocations  = false;
     Experimental = new ParserOptionsExperimental(false);
 }