
4.7.5 The Language structure
Shell.Options.Language
val fixityInSignatures: bool option
true, allow fixity specifications in signatures. This option is included for compatibility with the Standard ML of New Jersey compiler (NJSML).
MLWorks> signature S = sig infix %%% end; MLWorks>
Fixity declarations in signatures not valid in this mode." appears.
fixityInSignatures set to true, the signature is accepted:
MLWorks> set (fixityInSignatures, true); val it : unit = () MLWorks> signature S = sig infix %%% end; signature S = sig end MLWorks>

Generated with Harlequin WebMaker