-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric D. Fields
committed
Jan 12, 2015
1 parent
763e44b
commit 39c0f45
Showing
2 changed files
with
5 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,7 @@ | ||
var hamlc = require("haml-coffee"); | ||
var loaderUtils = require("loader-utils"); | ||
module.exports = function(source) { | ||
this.cacheable && this.cacheable(); | ||
var coffeeRequest = loaderUtils.getRemainingRequest(this); | ||
var jsRequest = loaderUtils.getCurrentRequest(this); | ||
var query = loaderUtils.parseQuery(this.query); | ||
var result; | ||
try { | ||
result = hamlc.compile(source) | ||
} catch (e) { | ||
var err = ""; | ||
if (e.location == null || e.location.first_column == null || e.location.first_line == null) { | ||
err += "Got an unexpected exception from the coffee-script compiler. The original exception was: " + e + "\n"; | ||
// err += "(The coffee-script compiler should not raise *unexpected* exceptions. You can file this error as an issue of the coffee-script compiler: https://github.com/jashkenas/coffee-script/issues)\n"; | ||
} else { | ||
var codeLine = source.split("\n")[e.location.first_line]; | ||
var offendingCharacter = (e.location.first_column < codeLine.length) ? codeLine[e.location.first_column] : ""; | ||
err += e + "\n"; | ||
// log erroneous line and highlight offending character | ||
err += " L" + e.location.first_line + ": " + codeLine.substring(0, e.location.first_column) + offendingCharacter + codeLine.substring(e.location.first_column + 1) + "\n"; | ||
err += " " + (new Array(e.location.first_column + 1).join(" ")) + "^\n"; | ||
} | ||
throw new Error(err); | ||
} | ||
var map = JSON.parse(result.v3SourceMap); | ||
map.sourcesContent = [source]; | ||
this.callback(null, result.js, map); | ||
|
||
module.exports = function (source) { | ||
var result = hamlc.compile(source); | ||
return result(); | ||
} |
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