The following test code shows the dst offset value is null, and then uses the Time module to determine the correct offset value. Since the documentation doesn't seem to indicate, I've arbitrarily decided that ClockTime.dst is the number of seconds west of UTC for use in my code.
function main()
{
var now = Sys.getClockTime();
Sys.println("now.hour=" + now.hour);
Sys.println("now.min=" + now.min);
Sys.println("now.sec=" + now.sec);
Sys.println("now.dst=" + now.dst);
// figure out the dst offset because it isn't provided
var local_now = Time.now();
var localtime = Gregorian.info(local_now, Time.FORMAT_SHORT);
var coord_now = Gregorian.momentNative(localtime.year,
localtime.month,
localtime.day,
localtime.hour,
localtime.min,
localtime.sec);
// determine the dst offset as minutes west of coordinated time
now.dst = coord_now.subtract(local_now).value();
Sys.println("now.hour=" + now.hour);
Sys.println("now.min=" + now.min);
Sys.println("now.sec=" + now.sec);
Sys.println("now.dst=" + now.dst);
}