-
-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to parse typeof(string[]) #172
Labels
Comments
Type parsing is currently fairly limited. It supports nullable types, but not arrays, nor generics. |
metoule
added a commit
to metoule/DynamicExpresso
that referenced
this issue
Oct 20, 2021
metoule
added a commit
to metoule/DynamicExpresso
that referenced
this issue
Oct 25, 2021
davideicardi
pushed a commit
that referenced
this issue
Oct 27, 2021
* ?. and ?[ operators now use the existing GenerateNullableTypeConversion that ensures a nullable type isn't converted to a nullable of nullable. Fixes #169 * Promote operands before generating the equality check on ?. and ?[ operators. * No longer consider ?. and ?[ as tokens, because it prevents the proper parsing of an array of a nullable type (e.g. int?[]). * Improve type parsing to support arrays and generics. Fixes #172 * No longer consider ?. and ?[ as tokens, because it prevents the proper parsing of an array of a nullable type (e.g. int?[]). * Improve type parsing to support arrays and generics. Fixes #172
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like some parsing issue
The text was updated successfully, but these errors were encountered: