API-CHANGES.txt 4.7 KB

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