diff options
author | Daniel Kolesa <daniel@octaforge.org> | 2019-03-08 09:58:52 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-03-08 10:12:09 -0500 |
commit | cf200a7d28aada7fff7d01fe3e353bf8359addc0 (patch) | |
tree | 2675876e3a1a2765584af59aeda83e7669701c69 /src/examples | |
parent | a007badbed3972f86bdd09dd974fbfbbde5bc20d (diff) | |
download | efl-cf200a7d28aada7fff7d01fe3e353bf8359addc0.tar.gz |
eolian: remove legacy handling API and most of generation
Summary:
This removes all Eolian API that deals with handling of legacy
code. It also removes the code using it in the generator as well
as bindings, but for now keeps generation of .eo.legacy.h types,
as there are still instances in our codebase where things are
otherwise broken. We can remove the rest once that is resolved.
Reviewers: zmike, cedric
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8255
Diffstat (limited to 'src/examples')
-rw-r--r-- | src/examples/eolian_cxx/ns_colourable.eo | 1 | ||||
-rw-r--r-- | src/examples/eolian_cxx/ns_colourablesquare.eo | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/examples/eolian_cxx/ns_colourable.eo b/src/examples/eolian_cxx/ns_colourable.eo index 8fce408cf6..977dc4f3fc 100644 --- a/src/examples/eolian_cxx/ns_colourable.eo +++ b/src/examples/eolian_cxx/ns_colourable.eo @@ -5,7 +5,6 @@ class Ns.Colourable extends Efl.Object methods { rgb_24bits_constructor { [[RGB Constructor.]] - legacy: null; params { @in rgb: int; [[24-bit RGB Component.]] } diff --git a/src/examples/eolian_cxx/ns_colourablesquare.eo b/src/examples/eolian_cxx/ns_colourablesquare.eo index 733701f705..7ebc260798 100644 --- a/src/examples/eolian_cxx/ns_colourablesquare.eo +++ b/src/examples/eolian_cxx/ns_colourablesquare.eo @@ -14,7 +14,6 @@ class Ns.ColourableSquare extends Ns.Colourable } } size_constructor { - legacy: null; params { @in size: int; } |