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
In scel, indentation is broken after a Routine block. Indeed, the case is slightly more general, as you can see in the example:
(
{
// ok
this.that(
blah
);
// ok
this.that(
{
blah
}
);
// ko
Routine {
blah
};
// Following code not indented
a = 3;
}
)
(
{
// back to correct indent level
fork {
blah
};
// indentation still ok
Foo {
blah
}
// following code not indented
a = 3;
}
)
The text was updated successfully, but these errors were encountered:
Version : 3.9.1
System : UbuntuStudio 16.04
In scel, indentation is broken after a Routine block. Indeed, the case is slightly more general, as you can see in the example:
The text was updated successfully, but these errors were encountered: