pdl: Remove '"' prefix and suffix from string
Strings are quotted in '"' in pdl, currently we keep thoses in the ast. So ``` custom_field Address : 48 "hci/" ``` ends up in the ast as ``` { "kind": "custom_field_declaration", "id": "Address", "width": 48, "function": "\"hci/\"" } ``` To simplify the generator code, remove the quotes to instead emit ``` { "kind": "custom_field_declaration", "id": "Address", "width": 48, "function": "hci/" } ``` Test: manual (cherry picked from https://android-review.googlesource.com/q/commit:90234d84476de5ccb53663d27aba371e1d75c91b) Merged-In: I06fefc06b7f4f740f12dfd68567460015e7b5862 Change-Id: I06fefc06b7f4f740f12dfd68567460015e7b5862
Loading
Please register or sign in to comment