Juan Ignacio Dopazo (2014-06-02T16:33:11.000Z)
domenic at domenicdenicola.com (2014-06-09T04:36:27.050Z)
Import/export declarations are designed to be static. However, eval() seems to break this invariant: ```js eval('import ' + foo + ' from ' + bar); ``` Is this valid ES6 code? Should it be valid?