This commit is contained in:
Alexander Wang 2023-03-14 00:35:55 -07:00
parent bee43fd290
commit c79a9ed366
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE

View file

@ -3,23 +3,23 @@
// d2ast implements the d2 language's abstract syntax tree. // d2ast implements the d2 language's abstract syntax tree.
// //
// Special characters to think about in parser: // Special characters to think about in parser:
// # // #
// """ // """
// ; // ;
// [] // []
// {} // {}
// | // |
// $ // $
// ' // '
// " // "
// \ // \
// : // :
// . // .
// -- // --
// <> // <>
// * // *
// & // &
// () // ()
package d2ast package d2ast
import ( import (