Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6877003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:32:52+00:00 2026-05-27T04:32:52+00:00

I get the error Error 1(E4) end. or implementation section members (types or methods)

  • 0

I get the error “Error 1(E4) "end." or implementation section members (types or methods) expected.“

Nowhere on the internet I can find information about this error.

I get this error because of this line of the AssemblyInfo.pas file:

Implementation
    SomeMethod();
end.

I work in Delphi Prism.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:32:52+00:00Added an answer on May 27, 2026 at 4:32 am

    That’s not valid inside implementation.

    The Pascal (which Delphi Prism is based loosely on) unit consists of a couple of sections. The interface section provides the same functionality as the C/C++ header file; it exposes the public content to users of the code unit.

    The implementation is like the C/C++ source file that the header exposes. It’s where you actually implement the content the interface unit made available. Therefore, it should contain the actual code for the methods and functions.

    A quick example (Delphi code, but is pretty similar):

    unit Test.NyClass;
    
    interface
    
    // Defines types and so forth that, if exposed via the proper declaration, can be seen outside
    // this unit simmply by adding this unit to the uses clause of the calling code.
    uses 
      SysUtils;
    
    type
      TMyClass=class(TObject)
        FMyNumber: Integer;     // protected members (no specifier, so defaults to protected)
        FMyString: String;
      private                     
        function GetMyNumber: Integer;    // Getters
        function GetMyString: string;     
        procedure SetMyNumber(const Value: Integer);  // Setters
        procedure SetMyString(const Value: string);
      published
        property MyNumber: Integer read GetMyNumber write SetMyNumber;  // properties exposed to class users
        property MyString: string read GetMyString write SetMyString;
      end;
    
    implementation
    
    // Actually provides the implementation for the getters/setters, any additional methods, 
    // types not needed outside this implementation section, etc.
    
    // Optional uses clause. Add units here you only need access to in the implementation code;
    // this prevents circular references ("Unit A uses Unit B which uses Unit A").
    uses
      SomeOtherUnit;           
    
    // Implementation of the getters and setters declared for the properties above. Outside code
    // can't call these directly (they were declared as private), but they're called automatically
    // when the corresponding property is referenced.
    function TMyClass.GetMyNumber: Integer;
    begin
      Result := FMyNumber;
    end;
    
    function TMyClass.GetMyString: string;
    begin
      Result := FMyString;
    end;
    
    procedure TMyClass.SetMyNumber(const Value: Integer);
    begin
      if FMyNumber <> Value then
        FMyNumber := Value;
    end;
    
    procedure TMyClass.SetMyString(const Value: string);
    begin
      if FMyString <>  Value then
        FMyString := Value;
    end;
    
    // Optional initialization section. This is what your code is probably intending to use (if Prism
    // supports it - don't have it on this machine to check).
    initialization
      // Any necessary loading initialization, etc. Called when the unit is being loaded into memory,
      // so you have to be careful what you're doing here.
    
    // Optional finalization section. This is where you do cleanup of anything  allocated in the
    // initialization section.
    finalization
    
    end.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to deserialize a stream but I always get this error End
I get this error: Can't locate Foo.pm in @INC Is there an easier way
I get an error Invalid receiver type 'NSInteger' on this line in my implementation
I have this query and I get error Operand should contain 1 column(s), whats
What is the best way to get error messages from a WF4 workflow back
In our application we've run into an error numerous times where we get error
I use the following jquery statements but i get error in this function onGetDataSuccess(result)
I am using following PHP code for trigger creation but always get error, please
When we try to create a view within a funcion we get ERROR: there
If I set pre-compile script into binary code to true I get error saying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.