API-CHANGES.txt 4.2 KB

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