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

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

[Octave-bug-tracker] [bug #51377] Parse error for abstract methods


From: Martynas
Subject: [Octave-bug-tracker] [bug #51377] Parse error for abstract methods
Date: Mon, 3 Jul 2017 19:27:34 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0

URL:
  <http://savannah.gnu.org/bugs/?51377>

                 Summary: Parse error for abstract methods
                 Project: GNU Octave
            Submitted by: mpata
            Submitted on: Tue 04 Jul 2017 02:27:33 AM EEST
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 4.2.1
        Operating System: Any

    _______________________________________________________

Details:

GNU Octave shows parse error for abstract methods in abstract classes defined
with "classdef".

For example, we have an abstract class:


classdef (Abstract) AbstractIncrementClass
  methods (Static, Abstract)
    [Y] = Increment(X)
  end
end


And a concrete class:


classdef ConcreteIncrementClass < AbstractIncrementClass
  methods (Static)
    function [Y] = Increment(X)
      Y = X + 1;
    end
  end
end


Running command "ConcreteIncrementClass.Increment(1)" results in error message
(path removed):


parse error near line 3 of file ...\AbstractIncrementClass.m

  external methods are only allowed in @-folders

>>>     [Y] = Increment(X)
                        ^


In Matlab it gives the answer (2).

Without "Static" keyword the same error message is shown while running the
constructor of concrete class (Matlab shows no error here as well).




    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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