-
-
Save rarous/1604755 to your computer and use it in GitHub Desktop.
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
# Dependency injetion example. | |
class House | |
# We are asking for things in contructor. | |
constructor: (@kitchen) -> | |
# Service locator antipattern example. | |
class House | |
constructor: -> | |
# our class is looking for kitchen | |
@kitchen = new Kitchen | |
# another point of view | |
# house is frozen | |
class House | |
constructor: -> | |
@kitchen = new Kitchen | |
# now house can have any kitchen | |
class House | |
constructor: (@kitchen) -> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment