1// All these ways of requiring WidgetShare should get normalized to the 2// same relative identifier: "../WidgetShare". 3require("./share"); 4require("../widget/share"); 5require("WidgetShare"); 6require("../WidgetShare"); 7 8// These identifiers will both become "./gallery". 9require("../widget/gallery"); 10require("./gallery"); 11 12// These both become "../assert". 13require("assert"); 14require("../assert"); 15 16// These circular references should both become "./follow". 17require("./follow"); 18require("../widget/follow"); 19 20exports.name = "widget/follow"; 21 22