You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is Issue 966 moved from a Google Code project.
Added by 2012-06-25T03:32:13.000Z by roncraig...@gmail.com.
Please review that bug for more context and additional comments, but update this bug.
Original labels: Type-Defect, Priority-Medium, Component-Build
Original description
**What steps will reproduce the problem?**
1. Enter if (x <= 3 || x >= 8 || y == 7)
2. Double-click each comparison operator and press Ctrl-Shift-F in turn, noting the message in the status line. Also notice whether context menu enables checking the reference materials for each operator.
What is the expected output?
All three comparison operators should enable the context menu option. All three should display a message saying no reference is available.
What do you see instead?
You'll see message reporting 'No reference available for ">="' or "==". That's correct for "==" according to keyword.txt, but wrong for ">=". Also, the context menu won't enable the option to look up the ">=" operator in the reference materials.
The reason is that keywords.txt has these lines in it:
< greaterthan
<= greaterthanorequalto
which is incorrect, of course, and also
< lessthan
<= lessthanorequalto
I think we should add If to the ==, <, >, >=, and <= operators like so:
== If
< If
<= If
> If
>= If
since the documentation for If (conditional) also covers the comparison operators.
**What version of the Arduino software are you using? On what operating**
**system? Which Arduino board are you using?**
Using version 1.0.1. OS and board don't matter.
**Please provide any additional information below.**
The text was updated successfully, but these errors were encountered:
This is Issue 966 moved from a Google Code project.
Added by 2012-06-25T03:32:13.000Z by roncraig...@gmail.com.
Please review that bug for more context and additional comments, but update this bug.
Original labels: Type-Defect, Priority-Medium, Component-Build
Original description
The text was updated successfully, but these errors were encountered: