@dbml/core 2.6.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -456,8 +456,8 @@ ListOfNames = first:name rest:(comma _ name)*
456
456
 
457
457
  // Comment Syntax: Support "COMMENT 'this is a comment'"
458
458
  Comment
459
- = "COMMENT" _ ("=" _)? comment: "'" c:[^']* "'" {return c.join('')}
460
- / "COMMENT" _ ("=" _)? comment: "\"" c:[^"]* "\"" {return c.join('')}
459
+ = "COMMENT"i _ ("=" _)? comment: "'" c:[^']* "'" {return c.join('')}
460
+ / "COMMENT"i _ ("=" _)? comment: "\"" c:[^"]* "\"" {return c.join('')}
461
461
  // End of Useful Expression
462
462
 
463
463