Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: loopbackio/strong-soap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 60146ec1d4d8a46b1f525cc1577cf695c734fa62
Choose a base ref
..
head repository: loopbackio/strong-soap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ea444b4b715400a842285a920349bd5b9837522b
Choose a head ref
Showing with 12 additions and 0 deletions.
  1. +12 −0 src/parser/xsd/include.js
12 changes: 12 additions & 0 deletions src/parser/xsd/include.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var XSDElement = require('./xsdElement');

class Include extends XSDElement {
constructor(nsName, attrs, options) {
super(nsName, attrs, options);
}
}


Include.elementName = 'include';

module.exports = Include;