我想使用 Dart PetitParser 解析 GraphQL 文档。为了能够支持 BlockString (多行字符串),我正在寻找一种方法来获得
从
"""
abc
\"""
def
"""
这部分出来
abc
\"""
def
完整语法https://facebook.github.io/graphql/draft/#sec-String-Value
我想使用 Dart PetitParser 解析 GraphQL 文档。为了能够支持 BlockString (多行字符串),我正在寻找一种方法来获得
从
"""
abc
\"""
def
"""
这部分出来
abc
\"""
def
完整语法https://facebook.github.io/graphql/draft/#sec-String-Value