csharp: rename ExtensionMethods
authorYeongjong Lee <yj34.lee@samsung.com>
Mon, 6 Jan 2020 10:08:44 +0000 (19:08 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Tue, 7 Jan 2020 21:31:46 +0000 (06:31 +0900)
Summary:
This patch will rename `ExtensionMethods` to `Extensions` that is commonly used
in csharp project.

Depends on D10972

Test Plan: meson build -Dbindings=mono,cxx -Dmono-beta=true

Reviewers: lauromoura, Jaehyun_Cho, felipealmeida

Reviewed By: Jaehyun_Cho, felipealmeida

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10913

src/bin/eolian_mono/eolian/mono/klass.hh

index cc32e82..a9cd53b 100644 (file)
@@ -408,7 +408,7 @@ struct klass
         (lit("#if EFL_BETA\n")
          << "#pragma warning disable CS1591\n" // Disabling warnings as DocFx will hide these classes
          << "public static class " << name_helpers::klass_concrete_name(cls)
-         << "ExtensionMethods {\n"
+         << "Extensions {\n"
          << extension_method_stream.str()
          << "}\n"
          << "#pragma warning restore CS1591\n"