Created
June 16, 2017 09:21
-
-
Save tobie/7eb10bbefe85786f577bb53d00d167a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parsed_idl.members.forEach(function(member) { | |
this.members[parsed_idl.name].members.push( | |
new IdlInterfaceMember(member) | |
); | |
}.bind(this)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parsed_idl.members.forEach( | |
function(member) { | |
this.members[parsed_idl.name].members.push( | |
new IdlInterfaceMember(member) | |
); | |
}.bind(this) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What I'd really like this whole thing to look like