(definitions, fieldType, isStatic)
| 11609 | } |
| 11610 | |
| 11611 | function AstClassField(definitions, fieldType, isStatic) { |
| 11612 | this.definitions = definitions; |
| 11613 | this.fieldType = fieldType; |
| 11614 | this.isStatic = isStatic; |
| 11615 | } |
| 11616 | AstClassField.prototype.getNames = function() { |
| 11617 | var names = []; |
| 11618 | for(var i=0,l=this.definitions.length;i<l;++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected