-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Support array/slice indexing for variable evaluation #116
Labels
Milestone
Comments
aarzilli
added a commit
to aarzilli/delve
that referenced
this issue
Oct 30, 2015
Supported operators: - All (binary and unary) operators between basic types except <-, ++ and -- (includes & to take the address of an expression) - Comparison operators between supported compound types - Typecast of integer constants into pointer types - struct members - indexing of arrays, slices and strings - slicing of arrays, slices and strings - pointer dereferencing - true, false and nil constants Implements go-delve#116, go-delve#117 and go-delve#251
aarzilli
added a commit
to aarzilli/delve
that referenced
this issue
Nov 3, 2015
Supported operators: - All (binary and unary) operators between basic types except <-, ++ and -- (includes & to take the address of an expression) - Comparison operators between supported compound types - Typecast of integer constants into pointer types - struct members - indexing of arrays, slices and strings - slicing of arrays, slices and strings - pointer dereferencing - true, false and nil constants Implements go-delve#116, go-delve#117 and go-delve#251
aarzilli
added a commit
to aarzilli/delve
that referenced
this issue
Nov 3, 2015
Supported operators: - All (binary and unary) operators between basic types except <-, ++ and -- (includes & to take the address of an expression) - Comparison operators between supported compound types - Typecast of integer constants into pointer types - struct members - indexing of arrays, slices and strings - slicing of arrays, slices and strings - pointer dereferencing - true, false and nil constants Implements go-delve#116, go-delve#117 and go-delve#251
aarzilli
added a commit
to aarzilli/delve
that referenced
this issue
Nov 4, 2015
Supported operators: - All (binary and unary) operators between basic types except <-, ++ and -- (includes & to take the address of an expression) - Comparison operators between supported compound types - Typecast of integer constants into pointer types - struct members - indexing of arrays, slices and strings - slicing of arrays, slices and strings - pointer dereferencing - true, false and nil constants Implements go-delve#116, go-delve#117 and go-delve#251
Implemented by 43b64ec |
nclifton
pushed a commit
to nclifton/delve
that referenced
this issue
Feb 24, 2021
* fix status code * move generation link after validation * fix validation country for recipient * remove test case not valid
abner-chenc
pushed a commit
to loongson/delve
that referenced
this issue
Mar 1, 2024
Supported operators: - All (binary and unary) operators between basic types except <-, ++ and -- (includes & to take the address of an expression) - Comparison operators between supported compound types - Typecast of integer constants into pointer types - struct members - indexing of arrays, slices and strings - slicing of arrays, slices and strings - pointer dereferencing - true, false and nil constants Implements go-delve#116, go-delve#117 and go-delve#251
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Support for the following syntax:
print arr[5]
.Should respect array bounds and print proper error messages for out of bounds indexing.
The text was updated successfully, but these errors were encountered: