source: dev/trunk/abdev/BasicCompiler_Common/include/Exception.h @ 366

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

Tryスコープのコード補完機能のバグを修正(EndTryコード補間が過剰に行われていた)。
コンパイラのログ生成処理をきった。

File size: 398 bytes
Line 
1#pragma once
2
3namespace Exception{
4
5    void TryCommand();
6    void CatchCommand( const char *parameter );
7    void FinallyCommand();
8    void EndTryCommand( bool isNoWarning = false );
9
10    // Tryスコープを検証する
11    void InspectTryScope();
12
13    void ThrowCommand( const char *Parameter );
14
15    void Opcode_Func_System_GetNowScopeCatchAddress();
16    void Opcode_Func_System_GetNowScopeFinallyAddress();
17}
Note: See TracBrowser for help on using the repository browser.