~davidc3/+junk/js-scopes-misc

« back to all changes in this revision

Viewing changes to src/bindings/lib/scope-core.js

  • Committer: Alexandre Abreu
  • Date: 2015-07-20 21:05:06 UTC
  • mfrom: (12.1.3 latest)
  • Revision ID: alexandre.abreu@canonical.com-20150720210506-sb68o2lasi8gqu12
Fix launcher scope_id; updated JS api; start porting to better v8cpp bindings; fix scope_id

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
 
22
22
module.exports = {
23
 
    new_scope: function(scope_id, config_file) {
24
 
        return new scope_binding.new_scope(scope_id, config_file);
 
23
    new_scope: function(runtime_config) {
 
24
        return new scope_binding.new_scope(runtime_config);
25
25
    }
26
26
};