DEBSOURCES
Skip Quicknav
sources / qtdeclarative-opensource-src / 5.15.8%2Bdfsg-3 / tests / manual / v4 / prototype.4.js
123456789
function Point(x, y) { this.x = x this.y = y } var pt = new Point(10, 20) print(Point.prototype.isPrototypeOf(pt))