From 7da0f7d76da1d779f324486df568fe884bcf6328 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 30 Nov 2005 12:40:26 +0000 Subject: r11972: handle [noejs] property also on functions metze (This used to be commit e5fef8519b28f66ce8a401fc866c8b9bf08c584d) --- source4/pidl/lib/Parse/Pidl/Samba/EJS.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/pidl') diff --git a/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm b/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm index 2cac7d81af..1e73696cc1 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba/EJS.pm @@ -713,7 +713,8 @@ sub EjsInterface($$) foreach my $d (@{$interface->{FUNCTIONS}}) { next if not defined($d->{OPNUM}); - + next if Parse::Pidl::Util::has_property($d, "noejs"); + EjsPullFunction($d); EjsPushFunction($d); EjsFunction($d, $name); -- cgit