Changeset 461 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Class.cpp
- Timestamp:
- Mar 23, 2008, 11:35:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Class.cpp
r447 r461 1 1 #include "stdafx.h" 2 3 #include <jenga/include/smoothie/Smoothie.h>4 #include <jenga/include/smoothie/SmoothieException.h>5 2 6 3 #include <Source.h> … … 202 199 const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find(className); 203 200 if( !pInheritsClass ){ 204 S moothieException::Throw(106,className,nowLine);201 SetError(106,className,nowLine); 205 202 return false; 206 203 } … … 239 236 if( !compiler.GetObjectModule().meta.GetClasses().LoopRefCheck(inheritsClass) ) 240 237 { 241 S moothieException::Throw(123,inheritsClass.GetName(),nowLine);238 SetError(123,inheritsClass.GetName(),nowLine); 242 239 return false; 243 240 } … … 1468 1465 pCompilingMethod = pParentClass->GetStaticMethods().GetMethodPtr( pUserProc ); 1469 1466 if( !pCompilingMethod ){ 1470 S moothieException::Throw(300);1467 SetError(); 1471 1468 } 1472 1469 }
Note:
See TracChangeset
for help on using the changeset viewer.