DEBSOURCES
Skip Quicknav
sources / qtdeclarative-opensource-src-gles / 5.15.17%2Bdfsg-1 / 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))