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
So for example in the javascript editor you can see code that wont be reachable as it is greyed out:
This would be great in cfml for the following cases:
function ret(){
var athing = "this";
return athing;
var notReachable = "Nothing is rechable";
}
function loc(){
var athing = "this";
location url="/";
var notReachable = "Nothing is rechable";
}
function bort(){
var athing = "this";
abort;
var notReachable = "Nothing is rechable";
}
The text was updated successfully, but these errors were encountered:
So for example in the javascript editor you can see code that wont be reachable as it is greyed out:
![Screenshot 2021-08-26 at 10 45 38](https://user-images.githubusercontent.com/148252/130941265-2ed1cf29-8439-46dd-824f-27025dd6d7ad.png)
This would be great in cfml for the following cases:
The text was updated successfully, but these errors were encountered: