This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from bzz/fix-block-comments
Drop all comments for BlockStatement
- Loading branch information
Showing
5 changed files
with
1,090 additions
and
138 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
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,3 +1,10 @@ | ||
// This a comment | ||
/* Another comment */ | ||
/** Yet another comment */ | ||
|
||
// Create dest - leadingComment | ||
try { | ||
fs.mkdirSync(dest, parseInt('0777', 8)); | ||
} catch (e) { | ||
// like Unix's cp, keep going even if we can't create dest dir - innerComment | ||
} |
Oops, something went wrong.