performance from aligning smalltalk javascript classes
play

Performance from Aligning Smalltalk & Javascript Classes Dr. - PowerPoint PPT Presentation

Performance from Aligning Smalltalk & Javascript Classes Dr. Dave Mason Department of Computer Science Ryerson University 1 / 20 Motivation building a dataflow environment (similar to this mornings talk) for the web Amber is very


  1. Performance from Aligning Smalltalk & Javascript Classes Dr. Dave Mason Department of Computer Science Ryerson University 1 / 20

  2. Motivation building a dataflow environment (similar to this morning’s talk) for the web Amber is very cool, but too slow and complex to interface with native objects curious how close one can make Javascript to Smalltalk Introduction 2 / 20

  3. Motivation building a dataflow environment (similar to this morning’s talk) for the web Amber is very cool, but too slow and complex to interface with native objects curious how close one can make Javascript to Smalltalk Introduction 2 / 20

  4. Motivation building a dataflow environment (similar to this morning’s talk) for the web Amber is very cool, but too slow and complex to interface with native objects curious how close one can make Javascript to Smalltalk Introduction 2 / 20

  5. 1 // Animal 2 function Animal(name) { 3 this .name = name 4 } 5 Animal.prototype = { // methods 6 canWalk: true , 7 sit: function () { 8 this .canWalk = false 9 alert( this .name + ’ sits down.’) 10 } 11 } 12 // Rabbit 13 function Rabbit(name) { 14 this .name = name 15 } 16 Rabbit.prototype = inherit(Animal.prototype) 17 Rabbit.prototype.jump = function () { // methods 18 this .canWalk = true 19 alert( this .name + ’ jumps!’) 20 } 21 // Usage 22 var rabbit = new Rabbit(’Sniffer’) 23 rabbit.sit() // Sniffer sits. 24 rabbit.jump() // Sniffer jumps! Introduction 3 / 20

  6. undefined null Object pro- Object totype an Object __proto__ __proto__ __proto__ prototype constructor fields fields fields Function Function prototype __proto__ __proto__ constructor __proto__ prototype prototype constructor fields fields UserCls UserCls prototype a UserCls __proto__ __proto__ __proto__ prototype fields constructor fields fields another UserCls __proto__ fields Introduction JS Inheritance 4 / 20

  7. ProtoObject ProtoObject class methods methods fields Object Object class an Object methods methods fields Behavior Behavior class methods methods fields Class Class class methods methods fields Metaclass Metaclass class methods methods fields UndefinedObject UndefinedObject class nil methods methods fields UserCls a UserCls UserCls class methods fields methods fields superclass class Introduction Smalltalk Classes 5 / 20

  8. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  9. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  10. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  11. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  12. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  13. Amber instances of Number are represented by the Javascript number objects Boolean , and Date are similarly directly mapped String , Symbol and Character both use Javascript strings OrderedCollection is mapped to Javascript arrays to map to valid Javascript identifiers, message-names are prepended with _ and have every colon ( : ) replaced by _ because Javascript identifiers have only a single look-up mechanism, instance variables are prepended with @ , which means they need to be looked up via the indexing method ( obj[’@foo’] ) because obj.@foo is invalid syntax. Introduction Smalltalk Classes 6 / 20

  14. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  15. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  16. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  17. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  18. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. In Javascript, this refers to the object from-which the name lookup was done that lead to the current function executing. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  19. Semantic Map Everything is an object. null, undefined doesNotUnderstand: message to the object. undefined → exception Boolean only: true and false ; otherwise signal a mustBeBoolean error. self refers to the current object and super refers to the current object, but with method resolution starting with the superclass of the current code. A return from a Smalltalk block returns from the method in which the block is statically defined. Introduction Smalltalk Classes 7 / 20

  20. Semantic Map A return from a Smalltalk block returns from the method in which the block is statically defined. 1 foo: n 2 n timesRepeat: [ 3 ^n 4 ]. 5 ^ -1 Introduction Smalltalk Classes 7 / 20

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend