Changeset 105 for NEWT0/trunk

Show
Ignore:
Timestamp:
05/18/07 19:10:00 (20 months ago)
Author:
gnue
Message:

Behavior when the message is sent to NIL is changed.
NIL:?method(); doesn't throw exception.
This behavior is the same as Newton.

Location:
NEWT0/trunk/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • NEWT0/trunk/src/newt_core/NewtVM.c

    r97 r105  
    18791879    } 
    18801880 
    1881     if (! NewtRefIsFrame(receiver)) 
     1881    if (! NewtRefIsFrame(receiver) && ! NewtRefIsNIL(receiver)) 
    18821882    { 
    18831883        NVMThrowBC(kNErrNotAFrame, receiver, b, true); 
  • NEWT0/trunk/src/version.h

    r93 r105  
    1919#define NEWT_VERSION    "0.1.3"                                 ///< バージョン 
    2020#define NEWT_COPYRIGHT  "Copyright (C) 2003-2007 Makoto Nukui"  ///< コピーライト 
    21 #define NEWT_BUILD      "2007-03-29-1"                          ///< ビルド番号 
     21#define NEWT_BUILD      "2007-05-18-1"                          ///< ビルド番号 
    2222#define NEWT_PARAMS     "[switches] [--] [programfile]"         ///< 引数 
    2323