Beispiel #1
0
 def compute_dependency_specs(cls, kwargs=None, payload=None):
     for spec in super(ScalaJSTarget,
                       cls).compute_dependency_specs(kwargs, payload):
         yield spec
     for spec in ScalaJSPlatform.global_instance(
     ).injectables_specs_for_key('runtime'):
         yield spec
Beispiel #2
0
 def compute_dependency_address_specs(cls, kwargs=None, payload=None):
     for address_spec in super().compute_dependency_address_specs(kwargs, payload):
         yield address_spec
     for address_spec in ScalaJSPlatform.global_instance().injectables_address_specs_for_key(
         "runtime"
     ):
         yield address_spec
Beispiel #3
0
 def traversable_dependency_specs(self):
   for library_spec in ScalaJSPlatform.global_instance().runtime:
     yield library_spec
   for spec in super(ScalaJSTarget, self).traversable_dependency_specs:
     yield spec
 def compute_dependency_specs(cls, kwargs=None, payload=None):
   for spec in super(ScalaJSTarget, cls).compute_dependency_specs(kwargs, payload):
     yield spec
   for spec in ScalaJSPlatform.global_instance().injectables_specs_for_key('runtime'):
     yield spec
Beispiel #5
0
 def traversable_dependency_specs(self):
   for library_spec in ScalaJSPlatform.global_instance().runtime:
     yield library_spec
   for spec in super(ScalaJSTarget, self).traversable_dependency_specs:
     yield spec