Best JavaScript code snippet using wpt
BufferedReader.js
Source:BufferedReader.js
1Clazz.load (["java.io.Reader"], "java.io.BufferedReader", ["java.io.IOException", "java.lang.IllegalArgumentException", "$.IndexOutOfBoundsException", "JU.SB"], function () {2c$ = Clazz.decorateAsClass (function () {3this.$in = null;4this.cb = null;5this.nChars = 0;6this.nextChar = 0;7this.markedChar = -1;8this.readAheadLimit = 0;9this.skipLF = false;10this.markedSkipLF = false;11Clazz.instantialize (this, arguments);12}, java.io, "BufferedReader", java.io.Reader);13Clazz.defineMethod (c$, "setSize", 14 function (sz) {15if (sz <= 0) throw new IllegalArgumentException ("Buffer size <= 0");16this.cb = Clazz.newCharArray (sz, '\0');17this.nextChar = this.nChars = 0;18}, "~N");19Clazz.makeConstructor (c$, 20function ($in) {21Clazz.superConstructor (this, java.io.BufferedReader, [$in]);22this.$in = $in;23this.setSize (8192);24}, "java.io.Reader");25Clazz.defineMethod (c$, "ensureOpen", 26 function () {27if (this.$in == null) throw new java.io.IOException ("Stream closed");28});29Clazz.defineMethod (c$, "fill", 30 function () {31var dst;32if (this.markedChar <= -1) {33dst = 0;34} else {35var delta = this.nextChar - this.markedChar;36if (delta >= this.readAheadLimit) {37this.markedChar = -2;38this.readAheadLimit = 0;39dst = 0;40} else {41if (this.readAheadLimit <= this.cb.length) {42System.arraycopy (this.cb, this.markedChar, this.cb, 0, delta);43this.markedChar = 0;44dst = delta;45} else {46var ncb = Clazz.newCharArray (this.readAheadLimit, '\0');47System.arraycopy (this.cb, this.markedChar, ncb, 0, delta);48this.cb = ncb;49this.markedChar = 0;50dst = delta;51}this.nextChar = this.nChars = delta;52}}var n;53do {54n = this.$in.read (this.cb, dst, this.cb.length - dst);55} while (n == 0);56if (n > 0) {57this.nChars = dst + n;58this.nextChar = dst;59}});60Clazz.defineMethod (c$, "read1", 61 function (cbuf, off, len) {62if (this.nextChar >= this.nChars) {63if (len >= this.cb.length && this.markedChar <= -1 && !this.skipLF) {64return this.$in.read (cbuf, off, len);65}this.fill ();66}if (this.nextChar >= this.nChars) return -1;67if (this.skipLF) {68this.skipLF = false;69if (this.cb[this.nextChar] == '\n') {70this.nextChar++;71if (this.nextChar >= this.nChars) this.fill ();72if (this.nextChar >= this.nChars) return -1;73}}var n = Math.min (len, this.nChars - this.nextChar);74System.arraycopy (this.cb, this.nextChar, cbuf, off, n);75this.nextChar += n;76return n;77}, "~A,~N,~N");78Clazz.defineMethod (c$, "read", 79function (cbuf, off, len) {80{81this.ensureOpen ();82if ((off < 0) || (off > cbuf.length) || (len < 0) || ((off + len) > cbuf.length) || ((off + len) < 0)) {83throw new IndexOutOfBoundsException ();84} else if (len == 0) {85return 0;86}var n = this.read1 (cbuf, off, len);87if (n <= 0) return n;88while ((n < len) && this.$in.ready ()) {89var n1 = this.read1 (cbuf, off + n, len - n);90if (n1 <= 0) break;91n += n1;92}93return n;94}}, "~A,~N,~N");95Clazz.defineMethod (c$, "readLine1", 96 function (ignoreLF) {97var s = null;98var startChar;99{100this.ensureOpen ();101var omitLF = ignoreLF || this.skipLF;102for (; ; ) {103if (this.nextChar >= this.nChars) this.fill ();104if (this.nextChar >= this.nChars) {105if (s != null && s.length () > 0) return s.toString ();106return null;107}var eol = false;108var c = String.fromCharCode (0);109var i;110if (omitLF && (this.cb[this.nextChar] == '\n')) this.nextChar++;111this.skipLF = false;112omitLF = false;113charLoop : for (i = this.nextChar; i < this.nChars; i++) {114c = this.cb[i];115if ((c == '\n') || (c == '\r')) {116eol = true;117break charLoop;118}}119startChar = this.nextChar;120this.nextChar = i;121if (eol) {122var str;123if (s == null) {124str = String.instantialize (this.cb, startChar, i - startChar);125} else {126s.appendCB (this.cb, startChar, i - startChar);127str = s.toString ();128}this.nextChar++;129if (c == '\r') {130this.skipLF = true;131}return str;132}if (s == null) s = JU.SB.newN (80);133s.appendCB (this.cb, startChar, i - startChar);134}135}}, "~B");136Clazz.defineMethod (c$, "readLine", 137function () {138return this.readLine1 (false);139});140Clazz.overrideMethod (c$, "skip", 141function (n) {142if (n < 0) {143throw new IllegalArgumentException ("skip value is negative");144}{145this.ensureOpen ();146var r = n;147while (r > 0) {148if (this.nextChar >= this.nChars) this.fill ();149if (this.nextChar >= this.nChars) break;150if (this.skipLF) {151this.skipLF = false;152if (this.cb[this.nextChar] == '\n') {153this.nextChar++;154}}var d = this.nChars - this.nextChar;155if (r <= d) {156this.nextChar += r;157r = 0;158break;159}r -= d;160this.nextChar = this.nChars;161}162return n - r;163}}, "~N");164Clazz.defineMethod (c$, "ready", 165function () {166{167this.ensureOpen ();168if (this.skipLF) {169if (this.nextChar >= this.nChars && this.$in.ready ()) {170this.fill ();171}if (this.nextChar < this.nChars) {172if (this.cb[this.nextChar] == '\n') this.nextChar++;173this.skipLF = false;174}}return (this.nextChar < this.nChars) || this.$in.ready ();175}});176Clazz.overrideMethod (c$, "markSupported", 177function () {178return true;179});180Clazz.overrideMethod (c$, "mark", 181function (readAheadLimit) {182if (readAheadLimit < 0) {183throw new IllegalArgumentException ("Read-ahead limit < 0");184}{185this.ensureOpen ();186this.readAheadLimit = readAheadLimit;187this.markedChar = this.nextChar;188this.markedSkipLF = this.skipLF;189}}, "~N");190Clazz.overrideMethod (c$, "reset", 191function () {192{193this.ensureOpen ();194if (this.markedChar < 0) throw new java.io.IOException ((this.markedChar == -2) ? "Mark invalid" : "Stream not marked");195this.nextChar = this.markedChar;196this.skipLF = this.markedSkipLF;197}});198Clazz.defineMethod (c$, "close", 199function () {200{201if (this.$in == null) return;202this.$in.close ();203this.$in = null;204this.cb = null;205}});206Clazz.defineStatics (c$,207"INVALIDATED", -2,208"UNMARKED", -1,209"DEFAULT_CHAR_BUFFER_SIZE", 8192,210"DEFAULT_EXPECTED_LINE_LENGTH", 80);...
Using AI Code Generation
1const wptext = require('./wptext');2console.log(wptext.nextChar('a'));3console.log(wptext.nextChar('b'));4console.log(wptext.nextChar('z'));5console.log(wptext.nextChar('A'));6console.log(wptext.nextChar('B'));7console.log(wptext.nextChar('Z'));8console.log(wptext.nextChar('0'));9console.log(wptext.nextChar('1'));10console.log(wptext.nextChar('9'));11console.log(wptext.nextChar(' '));12console.log(wptext.nextChar('!'));13console.log(wptext.nextChar('Z'));14console.log(wptext.nextChar('9'));15console.log(wptext.nextChar(' '));16console.log(wptext.nextChar('!'));17class wptext {18 constructor() {19 this.text = '';20 }21 nextChar(ch) {22 if (ch == 'z') {23 return 'a';24 } else if (ch == 'Z') {25 return 'A';26 } else if (ch == '9') {27 return '0';28 } else if (ch == ' ') {29 return '!';30 } else if (ch == '!') {31 return ' ';32 } else {33 return String.fromCharCode(ch.charCodeAt(0) + 1);34 }35 }36}37module.exports = new wptext();
Using AI Code Generation
1var wptext = require('./wptext.js');2var text = new wptext();3console.log(text.nextChar('a'));4console.log(text.nextChar('A'));5console.log(text.nextChar('z'));6console.log(text.nextChar('Z'));7console.log(text.nextChar('0'));8console.log(text.nextChar('9'));9console.log(text.nextChar(' '));10console.log(text.nextChar('!'));11console.log(text.nextChar('"'));12console.log(text.nextChar('#'));13console.log(text.nextChar('\''));14console.log(text.nextChar('('));15console.log(text.nextChar(')'));16console.log(text.nextChar('+'));17console.log(text.nextChar(','));18console.log(text.nextChar('-'));19console.log(text.nextChar('.'));20console.log(text.nextChar('/'));21console.log(text.nextChar(':'));22console.log(text.nextChar(';'));23console.log(text.nextChar('<'));24console.log(text.nextChar('='));25console.log(text.nextChar('>'));26console.log(text.nextChar('?'));27console.log(text.nextChar('@'));28console.log(text.nextChar('['));29console.log(text.nextChar('\\'));30console.log(text.nextChar(']'));31console.log(text.nextChar('^'));32console.log(text.nextChar('_'));33console.log(text.nextChar('`'));34console.log(text.nextChar('{'));35console.log(text.nextChar('|'));36console.log(text.nextChar('}'));37console.log(text.nextChar('~'));38console.log(text.nextChar(' '));
Using AI Code Generation
1var wpt = require('./wpt.js');2var nextChar = wpt.nextChar;3console.log(nextChar("a"));4console.log(nextChar("d"));5console.log(nextChar("z"));6console.log(nextChar("A"));7console.log(nextChar("Z"));8console.log(nextChar("0"));9console.log(nextChar("9"));10console.log(nextChar(" "));11console.log(nextChar("a9"));12console.log(nextChar("A0"));13console.log(nextChar("z9"));14console.log(nextChar("Z0"));15console.log(nextChar("9z"));16console.log(nextChar("0Z"));17console.log(nextChar("9A"));18console.log(nextChar("0a"));19console.log(nextChar("9 "));20console.log(nextChar("0 "));21console.log(nextChar("z "));22console.log(nextChar("Z "));23console.log(nextChar("a "));24console.log(nextChar("A "));25console.log(nextChar("9a"));26console.log(nextChar("0A"));27console.log(nextChar("9z"));28console.log(nextChar("0Z"));29console.log(nextChar("9A"));30console.log(nextChar("0a"));31console.log(nextChar("9 "));32console.log(nextChar("0 "));33console.log(nextChar("z "));34console.log(nextChar("Z "));35console.log(nextChar("a "));36console.log(nextChar("A "));37console.log(nextChar("9a"));38console.log(nextChar("0A"));39console.log(nextChar("9z"));40console.log(nextChar("0Z"));41console.log(nextChar("9A"));42console.log(nextChar("0a"));43console.log(nextChar("9 "));44console.log(nextChar("0 "));45console.log(nextChar("z "));46console.log(nextChar("Z "));47console.log(nextChar("a "));48console.log(nextChar("A "));49console.log(nextChar("9a"));50console.log(nextChar("0A"));51console.log(nextChar("9z"));52console.log(nextChar("0Z"));53console.log(nextChar("9A"));54console.log(nextChar("0a"));55console.log(nextChar("9 "));56console.log(nextChar("0 "));57console.log(nextChar("z "));58console.log(nextChar("Z "));59console.log(nextChar("a "));60console.log(nextChar("A "));61console.log(nextChar("9a"));62console.log(nextChar("0A"));63console.log(nextChar("9z"));64console.log(nextChar("0Z"));65console.log(nextChar("9A"));66console.log(nextChar
Using AI Code Generation
1var c = new wpt();2var ch = c.nextChar('a');3console.log(ch);4var ch = c.nextChar('b');5console.log(ch);6var ch = c.nextChar('z');7console.log(ch);8var ch = c.nextChar('A');9console.log(ch);10var ch = c.nextChar('B');11console.log(ch);12var ch = c.nextChar('Z');13console.log(ch);14var ch = c.nextChar('0');15console.log(ch);16var ch = c.nextChar('1');17console.log(ch);18var ch = c.nextChar('9');19console.log(ch);20var ch = c.nextChar(' ');21console.log(ch);22var ch = c.nextChar('!');23console.log(ch);24var ch = c.nextChar('A');25console.log(ch);26var ch = c.nextChar('Z');27console.log(ch);28var ch = c.nextChar('0');29console.log(ch);30var ch = c.nextChar('9');31console.log(ch);32var ch = c.nextChar(' ');33console.log(ch);
Using AI Code Generation
1var wpt = require('./wpt');2var fs = require('fs');3var file = fs.createWriteStream('output.txt');4var i=0;5for(i=0;i<100;i++)6{7 file.write(wpt.nextChar() + "\n");8}9file.end();
Using AI Code Generation
1var text = new wpText("test");2var char = text.nextChar();3## wpText.prevChar()4var text = new wpText("test");5var char = text.prevChar();6## wpText.nextWord()7var text = new wpText("test test");8var word = text.nextWord();9## wpText.prevWord()10var text = new wpText("test test");11var word = text.prevWord();12## wpText.nextParagraph()13var text = new wpText("test\ntest");14var paragraph = text.nextParagraph();15## wpText.prevParagraph()16var text = new wpText("test\ntest");17var paragraph = text.prevParagraph();18## wpText.nextSentence()19var text = new wpText("test. test");20var sentence = text.nextSentence();21## wpText.prevSentence()
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!