Changeset 87 for Include/Classes/System
- Timestamp:
- Feb 6, 2007, 9:19:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Diagnostics/base.ab
r79 r87 25 25 ' アサート(コールスタックを表示) 26 26 Sub Assert( condition As Boolean ) 27 If condition = =False then27 If condition = False then 28 28 'TODO: コールスタックを表示 29 29 End If … … 32 32 ' アサート(メッセージ文字列を表示) 33 33 Sub Assert( condition As Boolean, message As String ) 34 If condition = =False then34 If condition = False then 35 35 ' TODO: メッセージボックス形式での表示に対応 36 36 WriteLine( message )
Note:
See TracChangeset
for help on using the changeset viewer.