| // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "compiler/InfoSink.h" |
| void TInfoSinkBase::prefix(TPrefixType message) { |
| sink.append("WARNING: "); |
| case EPrefixInternalError: |
| sink.append("INTERNAL ERROR: "); |
| case EPrefixUnimplemented: |
| sink.append("UNIMPLEMENTED: "); |
| sink.append("UNKOWN ERROR: "); |
| void TInfoSinkBase::location(TSourceLoc loc) { |
| int string = 0, line = 0; |
| DecodeSourceLoc(loc, &string, &line); |
| TPersistStringStream stream; |
| stream << string << ":" << line; |
| stream << string << ":? "; |
| sink.append(stream.str()); |
| void TInfoSinkBase::message(TPrefixType message, const char* s) { |
| void TInfoSinkBase::message(TPrefixType message, const char* s, TSourceLoc loc) { |