API-CHANGES.txt 4.5 KB

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