Skip to content

Commit

Permalink
Merge pull request #1550 from wilzbach/update-runnable-module-blacklist
Browse files Browse the repository at this point in the history
Update runnable modules blacklist
  • Loading branch information
andralex committed Feb 15, 2017
2 parents 3f320ab + 3ed4ef3 commit aadad76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/run_examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $(document).ready(function()

// ignore not yet compatible modules
// copied from Phobos posix.mak
var ignoredModulesList = "allocator/allocator_list.d,allocator/building_blocks/allocator_list.d,allocator/building_blocks/free_list.d,allocator/building_blocks/quantizer,allocator/building_blocks/quantizer,allocator/building_blocks/stats_collector.d,base64.d,bitmanip.d,concurrency.d,conv.d,csv.d,datetime.d,digest/hmac.d,digest/sha.d,file.d,index.d,isemail.d,logger/core.d,logger/nulllogger.d,math.d,ndslice/selection.d,ndslice/slice.d,numeric.d,stdio.d,traits.d,typecons.d,uni.d,utf.d,uuid.d".split(",")
var ignoredModulesList = "base64.d,building_blocks/free_list,building_blocks/quantizer,digest/hmac.d,file.d,index.d,math.d,ndslice/selection.d,stdio.d,traits.d,typecons.d,uuid.d".split(",")
var currentModulePath = $('body')[0].id.split('.').join('/') + '.d';
if (ignoredModulesList.filter(function(x) { return currentModulePath.indexOf(x) >= 0 }).length > 0) {
return;
Expand Down

0 comments on commit aadad76

Please sign in to comment.