DEBSOURCES
Skip Quicknav
sources / libnb-platform18-java / 12.1-3 / webcommon / javascript2.editor / test / unit / data / testfiles / markoccurences / issue217155.js
12345678910
function Person(name){ this.realname = name; this.hi = function(){ return this.realname; } } var pe = new Person("John"); pe.hi();