In JavaScript you can access global variables and functions from the DevTool console (e.g. to call a function manually).
I tried to do this in Dartium, but I always get a reference error.
I tried following variations:
testFunc () {
return "test";
}
var testFunc2 = () {
return "test";
}
void main() {
var testFunc3 () {
return "test";
}
}
but none can be called via DevTool console of Dartium.