From be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:57:58 +0200 Subject: Adding upstream version 1.44.3. Signed-off-by: Daniel Baumann --- .../h2o/libh2o/misc/oktavia/src/stemmer/among.jsx | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web/server/h2o/libh2o/misc/oktavia/src/stemmer/among.jsx (limited to 'web/server/h2o/libh2o/misc/oktavia/src/stemmer/among.jsx') diff --git a/web/server/h2o/libh2o/misc/oktavia/src/stemmer/among.jsx b/web/server/h2o/libh2o/misc/oktavia/src/stemmer/among.jsx new file mode 100644 index 00000000..f695b94b --- /dev/null +++ b/web/server/h2o/libh2o/misc/oktavia/src/stemmer/among.jsx @@ -0,0 +1,34 @@ +import "base-stemmer.jsx"; + +class Among +{ + var s_size : int; /* search string */ + var s : string; /* search string */ + var substring_i : int; /* index to longest matching substring */ + var result : int; /* result of the lookup */ + var instance : Nullable. ; + /* object to invoke method on. It is a BaseStemmer */ + var method : Nullable.<(BaseStemmer) -> boolean>; + /* method to use if substring matches */ + + function constructor (s : string, substring_i : int, result : int) + { + this.s_size = s.length; + this.s = s; + this.substring_i = substring_i; + this.result = result; + this.method = null; + this.instance = null; + } + + function constructor (s : string, substring_i : int, result : int, + method : (BaseStemmer) -> boolean, instance : BaseStemmer) + { + this.s_size = s.length; + this.s = s; + this.substring_i = substring_i; + this.result = result; + this.method = method; + this.instance = instance; + } +} -- cgit v1.2.3