API-CHANGES.txt 4.6 KB

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