AmbiguousMessage.st
branchjv
changeset 18033 c90d8fdd805d
parent 18011 deb0c3355881
parent 14876 4074951f9879
child 18115 26ac4840e5d0
equal deleted inserted replaced
18032:1216c6885589 18033:c90d8fdd805d
    58 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    58 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    59 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    59 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    60 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    60 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    61 OTHER DEALINGS IN THE SOFTWARE.
    61 OTHER DEALINGS IN THE SOFTWARE.
    62 "
    62 "
       
    63 !
       
    64 
       
    65 documentation
       
    66 "
       
    67     raised by the VM when a message is sent to an object and 
       
    68     is not clear which method to execute.
       
    69     Such situation may occur when a current selector namespace
       
    70     imports two namespaces and both define a method with the
       
    71     requested selector.
       
    72 "
    63 ! !
    73 ! !
    64 
    74 
    65 !AmbiguousMessage class methodsFor:'documentation'!
    75 !AmbiguousMessage class methodsFor:'documentation'!
    66 
    76 
    67 version_CVS
    77 version_CVS
    68     ^ '$Header: /cvs/stx/stx/libbasic/AmbiguousMessage.st,v 1.2 2011-07-03 15:01:04 cg Exp $'
    78     ^ '$Header: /cvs/stx/stx/libbasic/AmbiguousMessage.st,v 1.3 2013-03-13 23:50:30 cg Exp $'
    69 !
    79 !
    70 
    80 
    71 version_SVN
    81 version_SVN
    72     ^ '§Id: AmbiguousMessage.st,v 1.1 2011/06/28 11:04:04 vrany Exp §'
    82     ^ '§Id: AmbiguousMessage.st,v 1.1 2011/06/28 11:04:04 vrany Exp §'
    73 ! !
    83 ! !
       
    84