source: dev/trunk/ab5.0/abdev/BasicCompiler_Common/include/ErrorCode.h@ 628

Last change on this file since 628 was 628, checked in by dai_9181, 16 years ago

ジェネリクス型の型解決ができない場合のエラーメッセージを実装した。

File size: 353 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace Compiler{ namespace Error{
4
5
6struct StringToTypeErrorCode
7{
8 enum EnumType
9 {
10 Successful = 0, // 成功
11 FailedResolveGenericType, // ジェネリック型の型解決に失敗
12 NotfoundGenericClass, // ジェネリッククラスを発見できなかった
13 NotfoundType, // 型を発見できなかった
14 };
15};
16
17
18}}}
Note: See TracBrowser for help on using the repository browser.