How to manually compile file / package
Is there a way to manually compile a class or package without having to save?
Using the perforce integration I did a "Undo Check Out" and the code was revered but not compiled.
CLARIFICATION: From the Atelier UI.
Use $System.OBJ.Compile("class").
do $system.OBJ.CompilePackage("some_package")
From Atelier's menus there is no way of doing a compile without a save. The compile updates the server class. The client code you wrote is saved so that the server and client code are in synch.
Low priority (since we can compile from a csession) but it would be nice if on P4 revert the class (and dependents) were recompiled.
This is a really good point.
At some level, this is part of the behavior of %Studio.SourceControl.ISC, the studio extension class for source control using Perforce. Studio doesn't automatically recompile the class and dependent classes after checkout either. This has bitten me before - I've undone a checkout, but forgotten to recompile, leaving the old compiled version in effect. It might be reasonable for %Studio.SourceControl.ISC to have an option to automatically compile edited items after undo of a checkout, or even to just do that all the time.
Also, Atelier actually does have a separate "compile" option, in the toolbar at the top. (The icon has a file with "010" on it.)
This is an important feature; in addition to the case you noted, there are several situations I can think of offhand where a class would need to be recompiled even though it hasn't changed:
One downside to automatically compiling impacted/dependent classes is that it can take a while - if a minor change impacts hundreds of classes, it might be reasonable to save the class and compile it in separate actions. There's a preference in Atelier (Preferences -> Atelier -> Save Settings, "server save action") to not compile files automatically when they're saved to the server. Atelier is much better about this than Studio, though; when compiling hundreds of dependent classes, Studio tends to freeze up. With Atelier there's the possibility of a timeout, but the editor should remain responsive while the compilation is happening.
Thanks for pointing out the toolbar button.
It would be nice if this was also a menu-item (preferably with hotkey) for those of us that don't use toolbars.