JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / com / stevesoft / pat / TransPat.js
index ec296f1..65f32a1 100644 (file)
@@ -1,35 +1,35 @@
-Clazz.declarePackage ("com.stevesoft.pat");\r
-Clazz.load (["com.stevesoft.pat.Pattern"], "com.stevesoft.pat.TransPat", ["com.stevesoft.pat.Regex"], function () {\r
-c$ = Clazz.decorateAsClass (function () {\r
-this.ra = null;\r
-this.ra_len = 0;\r
-this.pn = -1;\r
-this.lastMatchedTo = -1;\r
-Clazz.instantialize (this, arguments);\r
-}, com.stevesoft.pat, "TransPat", com.stevesoft.pat.Pattern);\r
-Clazz.prepareFields (c$, function () {\r
-this.ra =  new Array (10);\r
-});\r
-Clazz.overrideMethod (c$, "toString", \r
-function () {\r
-return "(?#TransPat)";\r
-});\r
-Clazz.makeConstructor (c$, \r
-function () {\r
-Clazz.superConstructor (this, com.stevesoft.pat.TransPat, []);\r
-});\r
-Clazz.defineMethod (c$, "matchInternal", \r
-function (pos, pt) {\r
-for (var i = 0; i < this.ra_len; i++) {\r
-pt.ignoreCase = this.ra[i].ignoreCase;\r
-pt.mFlag = this.ra[i].mFlag;\r
-pt.dotDoesntMatchCR = com.stevesoft.pat.Regex.dotDoesntMatchCR;\r
-var r = this.ra[i].thePattern.matchInternal (pos, pt);\r
-if (r >= 0) {\r
-this.pn = i;\r
-return r;\r
-}}\r
-this.pn = -1;\r
-return -1;\r
-}, "~N,com.stevesoft.pat.Pthings");\r
-});\r
+Clazz.declarePackage ("com.stevesoft.pat");
+Clazz.load (["com.stevesoft.pat.Pattern"], "com.stevesoft.pat.TransPat", ["com.stevesoft.pat.Regex"], function () {
+c$ = Clazz.decorateAsClass (function () {
+this.ra = null;
+this.ra_len = 0;
+this.pn = -1;
+this.lastMatchedTo = -1;
+Clazz.instantialize (this, arguments);
+}, com.stevesoft.pat, "TransPat", com.stevesoft.pat.Pattern);
+Clazz.prepareFields (c$, function () {
+this.ra =  new Array (10);
+});
+Clazz.overrideMethod (c$, "toString", 
+function () {
+return "(?#TransPat)";
+});
+Clazz.makeConstructor (c$, 
+function () {
+Clazz.superConstructor (this, com.stevesoft.pat.TransPat, []);
+});
+Clazz.defineMethod (c$, "matchInternal", 
+function (pos, pt) {
+for (var i = 0; i < this.ra_len; i++) {
+pt.ignoreCase = this.ra[i].ignoreCase;
+pt.mFlag = this.ra[i].mFlag;
+pt.dotDoesntMatchCR = com.stevesoft.pat.Regex.dotDoesntMatchCR;
+var r = this.ra[i].thePattern.matchInternal (pos, pt);
+if (r >= 0) {
+this.pn = i;
+return r;
+}}
+this.pn = -1;
+return -1;
+}, "~N,com.stevesoft.pat.Pthings");
+});