rtyler / otto

Otto is your friendly continuous delivery companion.
GNU Affero General Public License v3.0
80 stars 5 forks source link

Add multi-line comment support to parser #62

Closed nakulpathak3 closed 3 years ago

nakulpathak3 commented 3 years ago

Copied this straight from Pest itself so must be right 😅 https://github.com/pest-parser/pest/pull/332/files

Tested against

/* 1-line multiline comment */

/*
  N-line multiline comment
*/

/*
  // Line comment inside multiline
  /*
    (Multiline inside) multiline
  */

*/

Testing steps -

Fixes #57