API-CHANGES.txt 4.9 KB

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