
1 // 2 // Copyright (c) 2006, Brian Frank and Andy Frank 3 // Licensed under the Academic Free License version 3.0 4 // 5 // History: 6 // 3 Nov 06 Brian Frank Creation 7 // 8 9 using compiler 10 11 ** 12 ** BuildLog is used for logging build scripts 13 ** 14 class BuildLog : CompilerLog 15 { 16 17 new make(OutStream out := Sys.out) 18 : super(out) 19 { 20 } 21 22 }