API-CHANGES.txt 4.9 KB

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