octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #45945] Missing Matlab's special support for i


From: John W. Eaton
Subject: [Octave-bug-tracker] [bug #45945] Missing Matlab's special support for integer literals
Date: Fri, 23 Oct 2015 20:50:09 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0 Iceweasel/38.2.1

Follow-up Comment #5, bug #45945 (project octave):

I'd rather not treat function names in the lexer or parser as special if at
all possible because it is possible for them to be overloaded, possibly at run
time even when the function is not overloaded when the lexer sees the name.

Given the functions


function y = uint64 (x)
  y = x;
end

function x = f ()
  x = uint64 (18446744073709551614);
end


and the statement


class (f ())


when uint64 is initially not in the load path and again after uint64 is added
to the load path?


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?45945>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]