API-CHANGES.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. 0.12.0:
  2. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  3. * Existing classes moved to new KernelInfrastructure package
  4. * ImporterExporter
  5. * are now StreamExporters
  6. * aware of AMD namespaces
  7. * support transport types and commit channels
  8. + Node
  9. + >>nextChild
  10. + >>method
  11. + >>postCopy
  12. + >>isCascadeNode
  13. + >>isLastChild
  14. + BlockNode
  15. + >>nextNode:
  16. + >>nextChild
  17. + SendNode
  18. + >>isCascadeSendNode
  19. + >>shouldBeAliased
  20. + CompiledMethod>>sendTo:arguments:
  21. + Array
  22. + >>addFirst:
  23. + >>removeLast
  24. + Number
  25. + >>ceiling
  26. + >>floor
  27. + >>asNumber
  28. + >>//
  29. + >>cos
  30. + >>sin
  31. + >>tan
  32. + >>arcCos
  33. + >>arcSin
  34. + >>arcTan
  35. + >>log
  36. + >>log:
  37. + >>raisedTo:
  38. + >>sign
  39. + >>**
  40. + >>ln
  41. + >>e
  42. + String
  43. + class>>esc
  44. + >>asMutator
  45. + >>capitalized
  46. + >>isCapitalized
  47. + JSProxy>>printString
  48. + Behavior
  49. + >>ownProtocols
  50. + >>ownMethods
  51. + JSStream>>nextPutSendIndexFor:
  52. + InterfacingObject class
  53. + Interpreter class
  54. + DocumentFragmentTag class
  55. + AbstractExporter class
  56. + PlatformInterface class
  57. - Node>>extent
  58. - JSStream>>nextPutStatement:with:
  59. - Smalltalk.installSuperclass()
  60. - ClassReferenceNode class (now handled via VariableNode)
  61. 0.11.0:
  62. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  63. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  64. * Object>>printString
  65. * replace >>printString with >>printOn:
  66. * replace >>storeString with >>printString
  67. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  68. * Package>>fetch: is now Package>>load:
  69. * Package>>fetch:prefix: is now Package>>load:prefix:
  70. * Queue>>front replaced by Queue>>next
  71. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  72. * Queue>>back: replaced by Queue>>nextPut:
  73. * smalltalk.addMethod() does not use explicit JS selector
  74. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  75. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  76. * String>>asJavaScriptSelector moved to Kernel-Objects package
  77. + Object>>asString
  78. + Object>>putOn:
  79. + String>>isVowel
  80. + Collection>>putOn:
  81. + CharacterArray>>putOn:
  82. + Stream>><<
  83. + Stream>>write
  84. + SequenceableCollection>>newStream
  85. + SequenceableCollection>>readStream
  86. + SequenceableCollection>>stream
  87. + SequenceableCollection>>streamClass
  88. + SequenceableCollection>>writeStream
  89. + Collection>>isImmutable
  90. + Stream>>nextPutString:
  91. + StringStream>>nextPutString:
  92. + JSStream>>nextPutClassRefFunction:
  93. + String>>crlfSanitized
  94. + inlined Block now also responds to >>value:
  95. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  96. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  97. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  98. + Parser: Symbols for binarie selectores
  99. + Package>>commit
  100. + AIContext>>initializeLocals
  101. + ASTInterpreter>>withBlockContext:
  102. + smalltalk.allSelectors()
  103. + Object>>isCompiledMethod
  104. + Object>>isPackage
  105. + Object>>isBehavior
  106. + ClassMoved Announcemen class
  107. + Behavior>>includesBehavior:
  108. + Environment>>classes
  109. + Environment>>allSelectors
  110. + Environment>>removeProtocol:
  111. + Environment>>renameProtocol:to:in:
  112. + CompiledMethod>>protocol:
  113. + Smalltalk>>globalJsVariables
  114. + Smalltalk>>addGlobalJsVariable:
  115. + Smalltalk>>deleteGlobalJsVariable:
  116. - Object>>storeOn:
  117. - Object>>log:block:
  118. - Object>>printNl
  119. - Compiler-IR.st >>javascriptSelector
  120. - Compiler-IR.st >>nextPutVar:
  121. - Kernel-Collections.st >>asSuperSelector
  122. - Collection>>readStream
  123. - Collection>>stream
  124. - Collection>>streamClass
  125. - Collection>>writeStream
  126. - Symbol class (replaced with String)
  127. - IRInlinedNonLocalReturn class
  128. - IRInlinedSend>>nonLocalReturnInliner
  129. - IRNonLocalReturnInliner class
  130. - Package>>dependencies
  131. - Package>>dependencies:
  132. - Package>>properties
  133. - Package>>jsProperties
  134. - Package>>jsProperties:
  135. - Package>>propertiesAsJSON
  136. - Package>>propertyAt:
  137. - Package>>propertyAt:ifAbsent:
  138. - Package>>propertyAt:put:
  139. - Browser>>ajaxPutAt:data: