File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -560,7 +560,6 @@ parsingIndexAccessor = "Parsing index accessor: %{index}"
560560indexNotFound = " Index value not found"
561561indexValue = " Index value: %{value} with kind %{kind}"
562562propertyNameValue = " Property name value: %{value}"
563- invalidPropertyName = " Invalid property name"
564563invalidIndexValueKind = " Invalid index value kind: %{kind}"
565564invalidAccessorKind = " Invalid accessor kind: %{kind}"
566565functionResult = " Function results: %{results}"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ pub struct Expression {
2727
2828fn node_to_string ( node : & Node , statement_bytes : & [ u8 ] ) -> Result < String , DscError > {
2929 let text = node. utf8_text ( statement_bytes) ?;
30- Ok ( text. trim_matches ( '\'' ) . to_string ( ) )
30+ Ok ( text. to_string ( ) )
3131}
3232
3333impl Expression {
You can’t perform that action at this time.
0 commit comments